Roundcube Community Forum

Release Support => Older Versions => Release Candidate 2 => Topic started by: Nimrod on December 27, 2007, 08:28:04 AM

Title: Setting the default timezone?
Post by: Nimrod on December 27, 2007, 08:28:04 AM
I'm sorry if this sounds rather stupid, but i have set up Roundcube nicely on my webhost but have one issue,

How do I set the timezone?

Code: [Select]
// use this timezone to display date/time
$rcmail_config['timezone'] = intval(date('O'))/100 - date('I');

// is daylight saving On?
$rcmail_config['dst_active'] = (bool)date('I');

I found this in the config file, but I have no idea where to start. I would like to set it to "GMT" as default for everyone.

Many thanks for someone who can put me in the right direction :)
Title: Re: Setting the default timezone?
Post by: GunFro on December 27, 2007, 12:50:01 PM
.......................
Title: Re: Setting the default timezone?
Post by: kmn on December 28, 2007, 11:50:57 AM
I used FALSE instead of 0 for dst_active. It works okay.

kmn