3 Attachment(s)
Re: Time Zone Fix Support Thread
Host server was recently upgraded with timezone set to UTC. Since my local timezone differs, I attempted to implement this workaround. Completed step1, as instructed, changing TZ to my local timezone. Checked admin banner, but it still shows as UTC value. Now what? I have attached screenshots showing banner, PHP date values, and added TZ value.
Attachment 15278
Attachment 15280
Re: Time Zone Fix Support Thread
Used Dr.Byte's timezone patch, which resolved the problems. Here is the link: Time Zone Patch
Re: Time Zone Fix Support Thread
Hello, I was having some issues with this module but ended up finding a fix myself. Thought I'd share it here for anyone having a similar problem.
I ended up using a slightly different PHP script in the time_zone_fix.php file:
PHP Code:
<?php
date_default_timezone_set("America/Los_Angeles");
?>
That worked for me :)