danthony2 Posted February 25, 2004 Share Posted February 25, 2004 Hello I am having massive problems with my cart, it seems that when it switches to the secure.networking-help.biz it loses the info or something. I have had several different ppl from different locations test this and they are getting the same error on my cart. It seems to work when it wants. If someone can please help me that would be great or even create and account to see what it is doing. My cart is http://www.networking-help.biz/store My secure SSL is https://secure.networking-help.biz I am going crazy because the cart is almost populated with actual items. Thanks David Rodriguez Link to comment Share on other sites More sharing options...
Guest Posted February 25, 2004 Share Posted February 25, 2004 OK, I've had a little play and my guess is........it's because you have used a diff sub domain for you secure billing to the catalog pages. i.e. when i go to the store im first taken to www.networking-help.biz/store then when you want to login or pay i am taken to secure.networking-help.biz . I'm thinking that this is basically because the info isnt carried over to the subdomain. All secure carts that i know of dont work on a diff subdomain. It should be the same domain as the cart. so your secure URL should be: https://www.network-help.biz Take extra note of the s on the end of http because it means secure. So if you can do this, then it'll be sorted! B) Link to comment Share on other sites More sharing options...
danthony2 Posted February 26, 2004 Author Share Posted February 26, 2004 Yeah that sounds right, I didn't even think about that. Thanks alot. I am going to change that tonite. David Rodriguez Link to comment Share on other sites More sharing options...
danthony2 Posted February 26, 2004 Author Share Posted February 26, 2004 Man I am totally bumed, went to change my ssl and got this messege: Set up a Dedicated SSL Certificate from GeoTrust for one of your domains. Once a Dedicated SSL Certificate is set up for a domain or subdomain, encoded data transfer is possible. With 128-bit encoding, sensitive data can be protected during transfer from attempts at spying or manipulation. Please note: No forwarding destination may be set for this domain. Forwarding an encoded transfer to an external URL is not possible. To find out more information on GeoTrust please visit http://www.geotrust.com/. The certificate for the domain secure.networking-help.biz is ready. The certificate cannot be applied to a different domain before 3/17/2004. :( Link to comment Share on other sites More sharing options...
TomThumb Posted February 26, 2004 Share Posted February 26, 2004 This could be a cookie problem in configure.php Does your configure.php look like this? If not give it a try. define('HTTP_COOKIE_DOMAIN', 'networking-help.biz'); define('HTTPS_COOKIE_DOMAIN', 'networking-help.biz'); define('HTTP_COOKIE_PATH', '/store/'); define('HTTPS_COOKIE_PATH', '/store/'); while (!succeed) {try()}; GMT -6:00 Link to comment Share on other sites More sharing options...
user99999999 Posted February 26, 2004 Share Posted February 26, 2004 It should be like this if you cant change it. define('HTTP_SERVER', 'http://www.networking-help.biz'); define('HTTPS_SERVER', 'https://secure.networking-help.biz'); define('ENABLE_SSL', true); define('HTTP_COOKIE_DOMAIN', 'www.networking-help.biz'); define('HTTPS_COOKIE_DOMAIN', 'secure.networking-help.biz'); And set Force Cookies to False Link to comment Share on other sites More sharing options...
danthony2 Posted February 26, 2004 Author Share Posted February 26, 2004 Wow, this is hard then I thought, I have made the changes, I will list them below. Its doing the same thing. I feel I am getting closer to thinking this us with all the help you guys are giving. This is what I currently have it set to now after the last reply I got. define('HTTP_SERVER', 'http://www.networking-help.biz'); // eg, http://localhost - define('HTTPS_SERVER', 'https://secure.networking-help.biz'); // eg, https://localhost - define('ENABLE_SSL', true); // secure webserver for checkout procedure? define('HTTP_COOKIE_DOMAIN', 'www.networking-help.biz'); define('HTTPS_COOKIE_DOMAIN', 'www.networking-help.biz'); define('HTTP_COOKIE_PATH', '/store/'); define('HTTPS_COOKIE_PATH', '/store/'); define('DIR_WS_HTTP_CATALOG', '/store/'); define('DIR_WS_HTTPS_CATALOG', '/store/'); These are the session settings: Session Directory /tmp Force Cookie Use False Check SSL Session ID True Check User Agent True Check IP Address True Prevent Spider Sessions False Recreate Session False Session Directory Thanks for your help. Link to comment Share on other sites More sharing options...
Guest Posted February 27, 2004 Share Posted February 27, 2004 I am having a similar problem, but it would appear this situation refers to MS2 and I am using MS1 as it is only one supporting Japanese. I have several shopping sites that were all working fine until the sites were moved to a new server. Now all of them are dropping the items from the shopping cart when they switch to SSL mode. No where in the configure.php file does it mention cookies in MS1. It could be the SSL address has changed, but if this was the case then I would have thought I would have received an error. Link to comment Share on other sites More sharing options...
Guest Posted February 27, 2004 Share Posted February 27, 2004 Details of MS1 configure.php file // Define the webserver and path parameters // * DIR_FS_* = Filesystem directories (local/physical) // * DIR_WS_* = Webserver directories (virtual/URL) define('HTTP_SERVER', 'http://hotelgaido.com'); define('HTTPS_SERVER', 'https://safessl.net/~hotel'); define('ENABLE_SSL', true); // secure webserver for checkout procedure? define('DIR_WS_CATALOG', '/contax/'); 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', DIR_WS_CATALOG . 'pub/'); define('DIR_FS_DOCUMENT_ROOT', $HTTP_SERVER_VARS['DOCUMENT_ROOT']); // where your pages are located on the server. if $DOCUMENT_ROOT doesnt suit you, replace with your local path. (eg, /usr/local/apache/htdocs) define('DIR_FS_CATALOG', DIR_FS_DOCUMENT_ROOT . DIR_WS_CATALOG); define('DIR_FS_DOWNLOAD', DIR_FS_CATALOG . 'download/'); define('DIR_FS_DOWNLOAD_PUBLIC', DIR_FS_CATALOG . 'pub/'); // define our database connection define('DB_SERVER', 'localhost'); define('DB_SERVER_USERNAME', 'hotel_osc1'); define('DB_SERVER_PASSWORD', '********'); define('DB_DATABASE', 'hotel_osc1'); define('USE_PCONNECT', 'false'); // use persistent connections? define('STORE_SESSIONS', ''); // leave empty '' for default handler or set to 'mysql' ?> Link to comment Share on other sites More sharing options...
Guest Posted February 27, 2004 Share Posted February 27, 2004 Looks like it was a problem with the SSL at the server end. Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.