Hi, how do i change timezone so the timestamp on the news gets rigth. I have laid in the correct timezone in php.ini but still the timestamp on my news i 2 hours to early. //Pontus
See config.php
, around line 48~
// Check if the default timezone has been set, if not set it to UTC
// For a list of supported timezones see here - http://www.php.net/manual/en/timezones.php
// To set your own timezone comment out this code and use this example
// date_default_timezone_set('Europe/London');
if(function_exists("date_default_timezone_get")){
if(!date_default_timezone_get()){
date_default_timezone_set('UTC');
}
}