<a href="http://us.php.net/date_default_timezone_set" target="_blank">http://us.php.net/date_default_timezone_set</a>
date_default_timezone_set() is a function added to PHP after 5.2.0...
To fix this problem, you could replace all instances of date_default_timezone_set(###), with set_default_timezone(###) or putenv("TZ=###"); but I dont know what sort of side effects that would have. Those two older functions were depricated.
|