I did that.
It still wants to goto the same URL tho.
https://secure2secure.com/ian/store2...tall/index.php
If you go there you'll see the error I am receiving.
My config files are setup as:
includes/configure.php
PHP Code:
// Define the webserver and path parameters
// HTTP_SERVER is your Main webserver: eg, http://www.yourdomain.com
// HTTPS_SERVER is your Secure webserver: eg, https://www.yourdomain.com
define('HTTP_SERVER', 'http://factoryshoe.ianarmstrong.com');
define('HTTPS_SERVER', 'https://secure2secure.com/ian');
// Use secure webserver for checkout procedure?
define('ENABLE_SSL', 'true');
admin/includes/configure.php
PHP Code:
define('HTTP_SERVER', 'http://factoryshoe.ianarmstrong.com');
define('HTTPS_SERVER', 'https://secure2secure.com/ian');
define('HTTP_CATALOG_SERVER', 'http://factoryshoe.ianarmstrong.com');
define('HTTPS_CATALOG_SERVER', 'https://secure2secure.com/ian');
// Use secure webserver for catalog module and/or admin areas?
define('ENABLE_SSL_CATALOG', 'true');
define('ENABLE_SSL_ADMIN', 'false');
On secure side - includes/configure.php
PHP Code:
// Define the webserver and path parameters
// HTTP_SERVER is your Main webserver: eg, http://www.yourdomain.com
// HTTPS_SERVER is your Secure webserver: eg, https://www.yourdomain.com
define('HTTP_SERVER', 'http://factoryshoe.ianarmstrong.com');
define('HTTPS_SERVER', 'https://secure2secure.com/ian');
// Use secure webserver for checkout procedure?
define('ENABLE_SSL', 'true');
.
.
.
define('SQL_CACHE_METHOD', 'none');
define('DIR_FS_SQL_CACHE', '/home/secure2/ian/public_html/factoryshoe/store2/cache');
admin/includes/configure.php
PHP Code:
define('HTTP_SERVER', 'http://factoryshoe.ianarmstrong.com');
define('HTTPS_SERVER', 'https://secure2secure.com/ian');
define('HTTP_CATALOG_SERVER', 'http://factoryshoe.ianarmstrong.com');
define('HTTPS_CATALOG_SERVER', 'https://secure2secure.com/ian');
// Use secure webserver for catalog module and/or admin areas?
define('ENABLE_SSL_CATALOG', 'false');
define('ENABLE_SSL_ADMIN', 'false');
.
.
.
define('SQL_CACHE_METHOD', 'none');
define('DIR_FS_SQL_CACHE', '/home/secure2/ian/public_html/factoryshoe/store2/cache');