Ver Mensaje Individual
  #2 (permalink)  
Antiguo 21/07/2006, 02:47
rayder
 
Fecha de Ingreso: agosto-2004
Mensajes: 118
Antigüedad: 19 años, 8 meses
Puntos: 1
A mí no me funcionaba con
Código PHP:
error_reporting  =  E_ALL 
lo cambie por
Código PHP:
error_reporting  =  E_WARNING|E_PARSE 
y todo funciona de maravilla. Acuerdate de rearranca el apache y el php

La configuración de la sección es...
Código PHP:
; Print out errors (as a part of the output).  For production web sites,
you're strongly encouraged to turn this feature off, and use error logging
; instead (see below).  Keeping display_errors enabled on a production web site
; may reveal security information to end users, such as file paths on your Web
; server, your database schema or other information.
display_errors = On

; Even when display_errors is on, errors that occur during PHP'
s startup
sequence are not displayed.  It's strongly recommended to keep
; display_startup_errors off, except for when debugging.
display_startup_errors = Off

; Log errors into a log file (server-specific log, stderr, or error_log (below))
; As stated above, you'
re strongly advised to use error logging in place of
error displaying on production web sites.
log_errors On 
... y el resto con la configuración estandar.