Saturday, May 11, 2013

PHP Strict Standards: date() system's timezone settings

 
Messages in HTTP/Apache error_log: We have got date.timezone error in PHP.



PHP Strict Standards: date() [<a href='function.date'>function.date</a>]: It is not safe to rely on the system's timezone settings. Please use the date.timezone setting, the TZ environment variable 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.


Edit your PHP.INI using below command.



# vim /etc/php.ini
Change this:

[Date]
; Defines the default timezone used by the date functions
; date.timezone =
To this:




[Date]
; Defines the default timezone used by the date functions
date.timezone = "Asia/Calcutta"



This will resolve the problem.

0 comments:

Post a Comment