Ver Mensaje Individual
  #2 (permalink)  
Antiguo 24/06/2010, 13:19
m10locura
 
Fecha de Ingreso: marzo-2005
Mensajes: 141
Antigüedad: 19 años, 1 mes
Puntos: 0
Respuesta: Joomla! Instalacion (Problemas)

encontre la solucion:


I Think most of people makes the same mistake I made.
Actually, in php.ini (provided with EasyPhp3 (at last)) 'error_reporting' and 'display_errors' appear twice in the file ... So be care to edit the last one, because default value for this variables are :

Code:
error_reporting = E_ALL | E_STRICT
display_errors = On

despite what is written at the first begginig of this file.
So the Full answer to this problem is :
In Apache php.ini (For easyPhp in %EASYPHP_HOME%/conf_files/php.ini
1/ change
Code:
error_reporting = E_ALL | E_STRICT
by
Code:
error_reporting = E_ALL & ~E_STRICT

2/ change
Code:
display_errors = On
by
Code:
display_errors = Off

Warning : Be sure your error_reporting and display_errors variables are the last one to be read in the php.ini file, else yours could be overwritten by default values.
Furthermore, you can leave var $error_reporting = '-1'; unchanged in joomla configuration.php