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.
If you are getting this error in any of your PHP projects, the fix would be to add the
date.timezone
directive in your php.ini
like this:date.timezone = "Asia/Manila"
or call
date_default_timezone_set('Asia/Manila');
Ãâó : http://blog.randell.ph/2010/04/15/warning-date-it-is-not-safe-to-rely-on-the-systems-timezone-settings/