First thing...if this is a production server, you most likely want to turn error displaying off...log them instead.
display_errors = Off
error_log = /path/to/php_error.log
Also, you can set your php.ini file to something like this:
error_reporting = E_ALL & ~E_NOTICE & ~E_WARNING
-- Jason