OsWebDesign Posted September 1, 2010 Posted September 1, 2010 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.
chadcloman Posted September 1, 2010 Posted September 1, 2010 Try changing the two cookie paths to be: define('HTTP_COOKIE_PATH', '/'); define('HTTPS_COOKIE_PATH', '/'); . Check out Chad's News.
OsWebDesign Posted September 1, 2010 Author Posted September 1, 2010 My hosting company changed that on me. I saw the error as soon as you said cookie. :) Thanks!!
Recommended Posts
Archived
This topic is now archived and is closed to further replies.