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
Check the error_reporting flag, must be E_ALL, but in some release of Plesk there are quotes ("E_ALL") instead of (E_ALL)
error_reporting
E_ALL
"E_ALL"
I solved this issue deleting the quotes (") in php.ini
"
php.ini
from this:
error_reporting = "E_ALL"
to this:
error_reporting = E_ALL