Hi, I had the same problem, you can fix it in the following way, change the host for your domain in your config.php files
if (empty($SERVER['HTTPHOST'])) {
$SERVER['HTTPHOST'] = '127.0.0.1:80';
};
if your domain is mysite.com. it should look like this
if (empty($SERVER['HTTPHOST'])) {
$SERVER['HTTPHOST'] = 'mysite.com';
};