Shared SSL with osC

Anyone using shared SSL with osCommerce? I can't get it to switch to the secure server at checkout. I've inserted part of the catalog/includes/configure.php file below. Any help is appreciated.

define('HTTP_SERVER', 'http://singleestatesites.com'); // eg, http://localhost - should not be empty for productive servers
define('HTTPS_SERVER', 'https://singleestatesites.m****here.biz'); // eg, https://localhost - should not be empty for productive servers
define('ENABLE_SSL', true); // secure webserver for checkout procedure?
define('HTTP_COOKIE_DOMAIN', 'singleestatesites.com');
define('HTTPS_COOKIE_DOMAIN', 'singleestatesites.m****here.biz');
define('HTTP_COOKIE_PATH', '/catalog/');
define('HTTPS_COOKIE_PATH', '/catalog/');
define('DIR_WS_HTTP_CATALOG', '/catalog/');
define('DIR_WS_HTTPS_CATALOG', 'singleestatesites.m****here.biz/catalog/');
define('DIR_WS_IMAGES', 'images/');
define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/');
define('DIR_WS_INCLUDES', 'includes/');
define('DIR_WS_BOXES', DIR_WS_INCLUDES . 'boxes/');
define('DIR_WS_FUNCTIONS', DIR_WS_INCLUDES . 'functions/');
define('DIR_WS_CLASSES', DIR_WS_INCLUDES . 'classes/');
define('DIR_WS_MODULES', DIR_WS_INCLUDES . 'modules/');
define('DIR_WS_LANGUAGES', DIR_WS_INCLUDES . 'languages/');
 
Hi ,
You should make sure that these code must in admin/includes/configure.php .
 
In your code everything seems to be fine other than one line, you need to make chagne in your /catalog/includes/configure.php

change

define('DIR_WS_HTTPS_CATALOG', 'singleestatesites.m****here.biz/catalog/');

To

define('DIR_WS_HTTPS_CATALOG', '/catalog/');
 
Back
Top