View Single Post
  #2  
Old 03-11-2015, 05:47 PM
Kyttias's Avatar
Kyttias Kyttias is offline
Premium Member
 
Join Date: Jan 2014
Posts: 857
Gender: Unknown/Other
Credits: 91,175
Kyttias is on a distinguished road
Default

I think your hosting provider made some changes in the last eight months - sounds to me like they updated their PHP version, but failed to set a timezone in their configuration.

This can be fixed by setting a timezone yourself in your files, using date_default_timezone_set() - you can browse through timezones here.

An example would be
PHP Code:
date_default_timezone_set("America/New_York"); 
But I'm not sure where to actually set this at. The BEST thing to do would be to tell your hosting provider to please just set a time zone, any time zone, in their php.ini configuration file. It is a known error that has nothing to do with our script.
__________________
Please do not contact me directly outside of Mysidia.
I also cannot troubleshoot code more than two years old - I legit don't remember it.
Reply With Quote