I have a Ubuntu server running Apache2 with PHP 5. In the php.ini I set display_errors = On and error_reporting = E_ALL | E_STRICT, but PHP is st
display_errors = On
error_reporting = E_ALL | E_STRICT
I had the same problem with Apache and PHP 5.5. In php.ini, I had the following lines:
php.ini
error_reporting E_ALL & ~E_NOTICE & ~E_DEPRECATED & ~E_STRICT display_errors Off
instead of the following:
error_reporting=E_ALL & ~E_NOTICE & ~E_DEPRECATED & ~E_STRICT display_errors=Off
(the =sign was missing)
=