Apache - display server errors on screen
Let’s say that you are developing in PHP and something goes wrong and you end with a blank page instead of the expecting php page… great! what happened, where is the error?
Well, now you have to open the error log and check for the last lines to have a clue of where did you place your fat finger. Wouldn’t be nice if that error was display on your screen, of course it would.
Here is the piece of code that you need to add to your httpd.conf file:
<IfModule mod_php5.c>
# …
php_value display_errors on
# …
</IfModule>
