Monday, January 21, 2013

Php - date.timezone warning message

By Configuration.

in php.ini file, timezone option might have set to empty or invalid value. Set valid value.
 date.timezone = Etc/GMT


By Programatically

Add below line before any date related functions.

date_default_timezone_set("Etc/GMT");

Then restarting your web server.

No comments:

Post a Comment