"fecha(): No es seguro confiar en la configuración de zona horaria del sistema..."

Resuelto user1852837 asked hace 54 años • 25 respuestas

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>
user1852837 avatar Jan 01 '70 08:01 user1852837
Aceptado

Probablemente necesites poner la zona horaria en una línea de configuración en tu php.iniarchivo. 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 .

CtrlX avatar May 27 '2013 01:05 CtrlX

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 .

Babatunde Adeyemi avatar Aug 04 '2013 22:08 Babatunde Adeyemi

Agregue lo siguiente en su index.phparchivo. 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.phparchivo en lugar del php.iniarchivo.

if( ! ini_get('date.timezone') )
{
    date_default_timezone_set('GMT');
}
Justis Matotoka avatar Nov 12 '2013 06:11 Justis Matotoka