• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Change timezone

ohman

Member
Joined
Oct 24, 2008
Messages
289
Reaction score
5
Location
Sweden
Hello, my gesior AAC got the wrong timezone, is says that I died 11.46 when the clock is like 18.46. Where to change this?

thanks in adwards
 
PHP: date_default_timezone_set - Manual

The argument should be for example: "Europe/London"

Thanks :) I putted this text into config.php

PHP:
date_default_timezone_set('Europe/London');

if (date_default_timezone_get()) {
    echo 'date_default_timezone_set: ' . date_default_timezone_get() . '<br />';
}

if (ini_get('date.timezone')) {
    echo 'date.timezone: ' . ini_get('date.timezone');
}

Now the clock is 1 h less that real, how to make it go 1h more? I want the swedish time. Europe/London should work? :S
 
Back
Top