Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

SSL - Kicks user off


OsWebDesign

Recommended Posts

Posted

Here's my config files.

<code>

define('HTTP_SERVER', 'http://www.yourtraileronline.com');

define('HTTPS_SERVER', 'https://www.yourtraileronline.com');

define('ENABLE_SSL', true);

define('HTTP_COOKIE_DOMAIN', 'yourtraileronline.com');

define('HTTPS_COOKIE_DOMAIN', 'yourtraileronline.com');

define('HTTP_COOKIE_PATH', '/yourtraileronline.com/');

define('HTTPS_COOKIE_PATH', '/yourtraileronline.com/');

define('DIR_WS_HTTP_CATALOG', '/');

define('DIR_WS_HTTPS_CATALOG', '/');

 

 

define('HTTP_SERVER', 'http://www.yourtraileronline.com');

define('HTTP_CATALOG_SERVER', 'http://www.yourtraileronline.com');

define('HTTPS_CATALOG_SERVER', 'https://www.yourtraileronline.com');

define('ENABLE_SSL_CATALOG', 'true');

define('DIR_FS_DOCUMENT_ROOT', '/home/osweb/public_html/yourtraileronline.com/');

define('DIR_WS_ADMIN', '/admin/');

define('DIR_FS_ADMIN', '/home/osweb/public_html/yourtraileronline.com/admin/');

define('DIR_WS_CATALOG', '/');

define('DIR_FS_CATALOG', '/home/osweb/public_html/yourtraileronline.com/');

</code>

 

The problem is, on yourtraileronline.com/index.php, when you login to checkout, if you click my cart or my account, you have to login again. And with going to my cart, it registers a non-logged in user as a guest and gives them a temp cart, not their account cart. WHATS THE PROBLEM????

 

Session SSL checking or whatever is enabled, tried with disabled, no luck.

Posted

Try changing the two cookie paths to be:

 

define('HTTP_COOKIE_PATH', '/');
define('HTTPS_COOKIE_PATH', '/');

 

.

Check out Chad's News.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...