Looks like you have your php.ini error messaging set higher than you need. In your php.ini file, scroll down to the error handling and logging section and set your error reporting to this:
error_reporting = E_ALL & ~E_NOTICE
Not sure, but I think you may need to stop/start your httpd services after that change.
|