Nov3Written by:slhilbert
11/3/2008 3:44 PM 
I had a problem reported to me that the Dotnetnuke forum was displaying the time on forum posts at what looks to be GMT -0. You use to be able to modify the timezone for the forum but for some reason you can no longer do this. I did some digging around and found a SQL solution to the issue.
- Login to your site with "Host" level access.
- Go to Host | SQL
- Paste the following text into the textbox:
UPDATE ModuleSettings
SET SettingValue = 'False'
WHERE SettingName = 'EnableTimeZone' - Click the "Execute" button.
- NOTE: It took a little while for the update to show up on the site (in my case I came back two hours later and it was updated).
- NOTE: The SQL Update does an update on all Forum modules that might be installed. If you wish to be specific set the WHERE clause to match a ModuleID.
1 comment(s) so far...
Re: Fixing the Timezone issue in the Dotnetnuke Forum
Thank you for the post. Worked like a charm. I've spent over an hour on this before I read your post. By Jeremy Setser on
4/20/2009 9:41 PM
|