Desde php.ini con la directiva error_reporting
http://ar.php.net/manual/en/ref.erro...rror-reporting
O en tiempo de ejecucion, poniendo al inicio del script
Código PHP:
error_reporting(E_ALL ^ E_NOTICE); // todos los errores, excepto los e_notice.... segun dice el manual
http://ar.php.net/error_reporting
Desde apache
http://ar.php.net/configuration.changes
Crea un archivo .htaccess y ponele algo asi: *sin probar*
Código:
php_value error_reporting "E_ALL ^ E_NOTICE"
Saludos