Ver Mensaje Individual
  #3 (permalink)  
Antiguo 18/12/2010, 14:50
Avatar de manyblue
manyblue
 
Fecha de Ingreso: marzo-2008
Mensajes: 329
Antigüedad: 16 años, 1 mes
Puntos: 10
Respuesta: Error instalacion phpBB3 (zona horaria)

Si que hay que tocar el codigo amigo, aqui encontre la solucion:

If anyone else has this problem, here is the fix:
Do the following by downloading the file common.php in your phpBB Forum root through FTP, then opening the file with Notepad , PSPAD, or similar. Then upload the common.php file back to your forum root.
Open: common.php
Find:
Código:
 foreach ($cache->obtain_hooks() as $hook)
{
    @include($phpbb_root_path . 'includes/hooks/' . $hook . '.' . $phpEx);
}
Add After:
Código:
 // Timezone Fix.
date_default_timezone_set('Canada/Pacific');
cambiando canada/pacific por la correspondiente:

[URL]http://www.php.net/manual/en/timezones.others.php[/URL]


saludos