php.ini Error on "error_reporting"
Solution 1:
It looks to me as if you've just uncommented some lines in php.ini
without understanding that they're not meant to be uncommented; they're advisory text on how to set variables. If you want to change the value of error_reporting
, try instead
error_reporting = "E_ALL | ~E_NOTICE"