error_reporting = E_ALL & ~E_NOTICE
This means, show all error except notices and coding standard warnings
Comment/remove it and and use only E_ALL in your php.ini file.
error_reporting = E_ALL
This you can achieve through your php source files also. But you will not remember to add this all time. I bet.

Leave a passing comment »