Ver Mensaje Individual
  #8 (permalink)  
Antiguo 21/03/2013, 04:29
jarega88
 
Fecha de Ingreso: octubre-2011
Mensajes: 13
Antigüedad: 13 años, 2 meses
Puntos: 1
De acuerdo Respuesta: Actualización PHP servidor

Cita:
Iniciado por gildus Ver Mensaje
Holas,

Puedes deshabilitarlo tambien con PHP:

Código PHP:
Ver original
  1. ini_set('display_errors', '0');  
  2. error_reporting(E_ALL | E_STRICT);

O sino en tu php.ini:

error_reporting = E_ALL & ~E_NOTICE & ~E_STRICT

Si not tienes acceso a tu php.ini entonces con un .htaccess:

Código Apache:
Ver original
  1. php_value error_reporting 30711

Saludos,
Gracias por la respuesta. De veras.