If i create a php.ini in the root folder with this code
[php]<?php
date_default_timezone_set('Europe/London');
$script_tz = date_default_timezone_get();
if (strcmp($script_tz, ini_get('date.timezone'))){
echo 'Script timezone differs from ini-set timezone.';
} else {
echo 'Script timezone and ini-set timezone match.';
}
?>[/php]
This corrects the time and also fixes the users online, however website/admin/dashboard does not load up, its just white. Other links such as website/admin/settings does work and displays the correct time. Is there a solution to this ?
Also, could it be getting the time from somewhere else? on the same domain hosting i have prestashop installed (website/onlineshop) - I have ensured this is set to London time.