Author Topic: Setting the default timezone?  (Read 7449 times)

Offline Nimrod

  • Newbie
  • *
  • Posts: 3
Setting the default timezone?
« 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 :)

GunFro

  • Guest
Re: Setting the default timezone?
« Reply #1 on: December 27, 2007, 12:50:01 PM »
.......................
« Last Edit: July 16, 2011, 12:31:03 PM by GunFro »

Offline kmn

  • Jr. Member
  • **
  • Posts: 44
Re: Setting the default timezone?
« Reply #2 on: December 28, 2007, 11:50:57 AM »
I used FALSE instead of 0 for dst_active. It works okay.

kmn