date function date it is not safe to rely on the system timezone settings requiered to use the date timezone setting or the date_default_timezone_set() fuction in case you used any those metods and you are still getting this warning, you most likely misspelled the timezone identifier we aselect America/Guayaquil for ect instead in
info@elgg.org
Security issues should be reported to security@elgg.org!
©2014 the Elgg Foundation
Elgg is a registered trademark of Thematic Networks.
Cover image by Raül Utrera is used under Creative Commons license.
Icons by Flaticon and FontAwesome.
- David Hernández@luigisnowball
David Hernández - 0 likes
You must log in to post replies.Hola,
Este post está un poco viejo, pero valdría la pena responder, aunque en realidad Kevin no preguntó nada ;-)
Aquí creo que el problema es la configuración de PHP, específicamente de una directiva de "php.ini".
Tenemos que abrir dicho archivo con un editor de texto (como el Bloc de Notas de Windows), no con un procesador de palabras (como Microsoft Word), y buscar algo como:
;;;;;;;;;;;;;;;;;;;
; Module Settings ;
;;;;;;;;;;;;;;;;;;;
[Date]
; Defines the default timezone used by the date functions
; http://php.net/date.timezone
; date.timezone =
(Creo que así viene por "default")
Entonces, debemos definir la zona horaria de nuestra plataforma.
Para el caso de la Ciudad de México quedaría:
;;;;;;;;;;;;;;;;;;;
; Module Settings ;
;;;;;;;;;;;;;;;;;;;
[Date]
; Defines the default timezone used by the date functions
; http://php.net/date.timezone
date.timezone = "America/Mexico_City"
En esta parte se encuentran las zonas horarias reconocidas por PHP.
Es cosa de buscar la propia y colocarla.
Saludos