PHP doesn't show any kind of errors
- by iSenne
Hello everybody
I have a PHP server at home for development. It is running:
Ubuntu 9.10
Apache 2.2.12
PHP 5.3.2-0.dotdeb.1
MySql 5.0.7-dev
Currently the settings in the php.ini for displayiong errors are:
display_errors = on
error_reporting = E_ALL
But I do not see any errors in my php script. Also very strange is that phpinfo() shows me this:
display_errors Off
I checked the php.ini file, and restarted the apache server many times, but with no luck. Does anybody knows how this is possible?
edit:
When I localy set this:
ini_set('display_errors', 'on');
I do receive errors.