"fecha(): No es seguro confiar en la configuración de zona horaria del sistema..."
Recibí este error cuando solicité actualizar la versión de PHP de 5.2.17 a PHP 5.3.21 en el servidor.
<div style="border:1px solid #990000;padding-left:20px;margin:0 0 10px 0;">
<h4>A PHP Error was encountered</h4>
<p>Severity: Warning</p>
<p>Message: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'America/New_York' for 'EDT/-4.0/DST' instead</p>
<p>Filename: libraries/Log.php</p>
<p>Line Number: 86</p>
</div>
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'America/New_York' for 'EDT/-4.0/DST' instead in /filelocation right here/system/libraries/Log.php on line 86
Warning: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'America/New_York' for 'EDT/-4.0/DST' instead in /filelocation right here/system/libraries/Log.php on line 99
<div style="border:1px solid #990000;padding-left:20px;margin:0 0 10px 0;">
<h4>A PHP Error was encountered</h4>
<p>Severity: Warning</p>
<p>Message: date(): It is not safe to rely on the system's timezone settings. You are *required* to use the date.timezone setting or the date_default_timezone_set() function. In case you used any of those methods and you are still getting this warning, you most likely misspelled the timezone identifier. We selected 'America/New_York' for 'EDT/-4.0/DST' instead</p>
<p>Filename: libraries/Log.php</p>
<p>Line Number: 99</p>
</div>
Probablemente necesites poner la zona horaria en una línea de configuración en tu php.ini
archivo. Deberías tener un bloque como este en tu archivo php.ini:
[Date]
; Defines the default timezone used by the date functions
; http://php.net/date.timezone
date.timezone = America/New_York
Si no, agrégalo (reemplazando la zona horaria por la tuya). Después de la configuración, asegúrese de reiniciar httpd ( service httpd restart
).
Aquí está la lista de zonas horarias admitidas .
Si no puede modificar su configuración de php.ini, también puede usar el siguiente fragmento al comienzo de su código:
date_default_timezone_set('Africa/Lagos');//or change to whatever timezone you want
La lista de zonas horarias se puede encontrar en http://www.php.net/manual/en/timezones.php .
Agregue lo siguiente en su index.php
archivo. Me encontré con esto por primera vez cuando moví mi aplicación de mi servidor XAMPP a Apache 2.2 y PHP 5.4...
Le aconsejaría que lo haga en su index.php
archivo en lugar del php.ini
archivo.
if( ! ini_get('date.timezone') )
{
date_default_timezone_set('GMT');
}