They have given me a temporary URL to test shop with. The shop works perfectly on my current useless hosts package, but I want to ensure it works on 20i before I hit the button.
The temporary URL throws a "Too many redirects" error. 20i's support have tried a few things but are baffled. They want me to contact yourselves. I am convinced it is the configure files that are at fault. Here are both files from both installations. I would be grateful if you could peruse them please and feedback from anybody who has gone through this process with 20i.
Current Host Shop
Code: Select all
// set the level of error reporting
error_reporting(E_ALL & ~E_NOTICE & ~E_DEPRECATED);
const HTTP_SERVER = 'https://www.*****.co.uk';
const COOKIE_OPTIONS = [
'lifetime' => 0,
'domain' => 'www.*****.co.uk',
'path' => '/',
'samesite' => 'Lax',
];
const DIR_WS_CATALOG = '/';
const DIR_FS_CATALOG = '/home/*****/public_html/';
date_default_timezone_set('Europe/London');
define('DB_SERVER', '127.0.0.1');
define('DB_SERVER_USERNAME', '*****');
define('DB_SERVER_PASSWORD', '*****');
define('DB_DATABASE', '*****');Code: Select all
// set the level of error reporting
error_reporting(E_ALL);
const HTTP_SERVER = 'https://www.*****.co.uk';
const COOKIE_OPTIONS = [
'lifetime' => 0,
'domain' => 'www.*****.co.uk',
'path' => '/*****',
'samesite' => 'Lax',
];
const DIR_FS_DOCUMENT_ROOT = '/home/*****/public_html';
const DIR_WS_ADMIN = '/*****/';
const DIR_FS_ADMIN = DIR_FS_DOCUMENT_ROOT . DIR_WS_ADMIN;
const DIR_FS_BACKUP = DIR_FS_ADMIN . 'backups/';
const HTTP_CATALOG_SERVER = 'https://www.*****.co.uk';
const DIR_WS_CATALOG = '/';
const DIR_FS_CATALOG = DIR_FS_DOCUMENT_ROOT . DIR_WS_CATALOG;
date_default_timezone_set('Europe/London');
define('DB_SERVER', '127.0.0.1');
define('DB_SERVER_USERNAME', '*****');
define('DB_SERVER_PASSWORD', '*****');
define('DB_DATABASE', '*****');
Code: Select all
// set the level of error reporting
error_reporting(E_ALL & ~E_NOTICE & ~E_DEPRECATED);
const HTTP_SERVER = 'https://**********.stackstaging.com';
const COOKIE_OPTIONS = [
'lifetime' => 0,
'domain' => '*********.stackstaging.com',
'path' => '/',
'samesite' => 'Lax',
];
const DIR_WS_CATALOG = '/';
const DIR_FS_CATALOG = '/home/virtual/vps-0583ae/7/********/public_html/';
date_default_timezone_set('Europe/London');
define('DB_SERVER', '127.0.0.1');
define('DB_SERVER_USERNAME', '****');
define('DB_SERVER_PASSWORD', '*****');
define('DB_DATABASE', 'phoenix-********');Code: Select all
// set the level of error reporting
error_reporting(E_ALL);
const HTTP_SERVER = 'https://*****.stackstaging.com';
const COOKIE_OPTIONS = [
'lifetime' => 0,
'domain' => '*****.stackstaging.com'
'path' => '/*****',
'samesite' => 'Lax',
];
const DIR_FS_DOCUMENT_ROOT = '/home/virtual/vps-0583ae/7/*****/public_html';
const DIR_WS_ADMIN = '/*****/';
const DIR_FS_ADMIN = DIR_FS_DOCUMENT_ROOT . DIR_WS_ADMIN;
const DIR_FS_BACKUP = DIR_FS_ADMIN . 'backups/';
const HTTP_CATALOG_SERVER = 'https://*****.stackstaging.com';
const DIR_WS_CATALOG = '/';
const DIR_FS_CATALOG = DIR_FS_DOCUMENT_ROOT . DIR_WS_CATALOG;
date_default_timezone_set('Europe/London');
define('DB_SERVER', '127.0.0.1');
define('DB_SERVER_USERNAME', '*****');
define('DB_SERVER_PASSWORD', '*****');
define('DB_DATABASE', 'phoenix-*****');