Ver Mensaje Individual
  #2 (permalink)  
Antiguo 18/05/2005, 10:20
fran86
 
Fecha de Ingreso: agosto-2002
Ubicación: Colón - Entre Rios - Argentina
Mensajes: 647
Antigüedad: 21 años, 8 meses
Puntos: 8
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

Última edición por fran86; 18/05/2005 a las 10:27