Hello all, I recently got an SSL & am trying to configure my cart. Having read thru a bunch of posts I edited the 2 config.php's with the SSL address, somehow that seemed to change the relative path and I can't access the catalog or admin. Help!
store is (supposed) to be at big7records.com/catalog
INCLUDES configure.php
define('HTTP_SERVER', 'http://www.big7records.com');
define('HTTPS_SERVER', 'https://www.big7records.com');
// Use secure webserver for checkout procedure?
define('ENABLE_SSL', 'true');
define('DIR_WS_CATALOG', '/');
define('DIR_WS_HTTPS_CATALOG', '/');
ADMIN INCLUDES configure.php
define('HTTP_SERVER', 'http://www.big7records.com');
define('HTTPS_SERVER', 'https://big7records.com');
define('HTTP_CATALOG_SERVER', 'http://www.big7records.com');
define('HTTPS_CATALOG_SERVER', 'https://big7records.com');
define('ENABLE_SSL_CATALOG', 'false');
define('ENABLE_SSL_ADMIN', 'false');
Changed the path on these trying to get it to work:
define('DIR_WS_ADMIN', '/catalog/admin/');
define('DIR_WS_CATALOG', '/catalog/');
define('DIR_WS_HTTPS_ADMIN', '/catalog/admin/');
define('DIR_WS_HTTPS_CATALOG', '/catalog/');




