MyBB Community Forums

Full Version: Time Zone Doesn't Change
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi there!

When I change the timezone in my AdminCP it has no effect. As in if I put it on my timezone GMT +10, then it says 10:37pm when its only 8:37pm. Then if I put it onto GMT +12, it will stay on 10:37pm. Also if I take it to GMT +5 it will stay at 10:37pm.

Link to my site: http://www.anzleagues.com/forums/

Its a new installtion of 1.4.8 (only installed 3 days or so)



Syth.. Heart
For all registered users, timezones are controlled by their personal user settings in User CP --> Edit Options
Or there's an SQL query you can run to update it for everybody if you'd want it.

UPDATE `mybb_users` SET `timezone` = 'TIME';

Change TIME to the timezone, like -5 or 10 (if it's a + time there's no + in front of the number).
Sweet as!

Works fine, I had to read your post twice tho, stupid me. Anyways thanks for the quick support again.


Syth. Big Grin
(2009-09-17, 10:44 PM)MattRogowski Wrote: [ -> ]Or there's an SQL query you can run to update it for everybody if you'd want it.

UPDATE `mybb_users` SET `timezone` = 'TIME';

Change TIME to the timezone, like -5 or 10 (if it's a + time there's no + in front of the number).

I really don't know anything about running SQL or running queries..
How do you do this...