Hi
Change in /core/includes/master.inc.php on all servers
// set timezone if not set, change to whatever timezone you want
if (!ini_get('date.timezone'))
{
date_default_timezone_set('GMT');
}
GMT channge to your timezone http://php.net/manual/en/timezones.php
example
"// set timezone if not set, change to whatever timezone you want
if (!ini_get('date.timezone'))
{
date_default_timezone_set('Europe/London');
} "