xtcsoft Posted September 6, 2005 Share Posted September 6, 2005 This is a strange problem. Without SSL, my site work good. But with shared SSL like https://florida.anyservers.com/~mysite when you put checkout button, required login again. After login, you can buy item.After the order, the item still display into Shopping Cart area. Also you need login again if you go to "My Account or Cart Contents " How can deactivate the login again and again and again....and fix the problem with Shopping Cart ? Maby the problem is theShared ssl? Link to comment Share on other sites More sharing options...
Guest Posted September 6, 2005 Share Posted September 6, 2005 post the configure.php without the database connection info Link to comment Share on other sites More sharing options...
xtcsoft Posted September 6, 2005 Author Share Posted September 6, 2005 // Define the webserver and path parameters // * DIR_FS_* = Filesystem directories (local/physical) // * DIR_WS_* = Webserver directories (virtual/URL) define('HTTP_SERVER', 'http://mysite.com'); // eg, http://localhost - should not be empty for productive servers define('HTTPS_SERVER', 'https://florida.anyservers.com/~mysiteadmin'); // eg, https://localhost - should not be empty for productive servers define('ENABLE_SSL', true); // secure webserver for checkout procedure? define('HTTP_COOKIE_DOMAIN', 'mysite.com'); define('HTTPS_COOKIE_DOMAIN', 'mysite.com'); define('HTTP_COOKIE_PATH', '/catalog/'); define('HTTPS_COOKIE_PATH', '/catalog/'); define('DIR_WS_HTTP_CATALOG', '/catalog/'); define('DIR_WS_HTTPS_CATALOG', '/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/'); define('DIR_WS_DOWNLOAD_PUBLIC', 'pub/'); define('DIR_FS_CATALOG', '/home/opcdgr/public_html/catalog/'); define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/'); define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/'); Link to comment Share on other sites More sharing options...
Guest Posted September 6, 2005 Share Posted September 6, 2005 The problem is here with these: define('HTTPS_SERVER', 'https://florida.anyservers.com/~mysiteadmin'); define('HTTPS_COOKIE_DOMAIN', 'mysite.com'); define('HTTPS_COOKIE_PATH', '/catalog/'); define('DIR_WS_HTTPS_CATALOG', '/catalog/'); Try this: define('HTTPS_SERVER', 'https://florida.anyservers.com'); define('HTTPS_COOKIE_DOMAIN', 'florida.anyservers.com'); define('HTTPS_COOKIE_PATH', '/~mysiteadmin/catalog/'); define('DIR_WS_HTTPS_CATALOG', '/~mysiteadmin/catalog/'); Matti Link to comment Share on other sites More sharing options...
xtcsoft Posted September 7, 2005 Author Share Posted September 7, 2005 Thank you :D Its ok !!!! Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.