Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Item disappears when I go to checkout!!!!!


Jamaz

Recommended Posts

When I choose a product to buy, it quite rightly goes into my shopping cart. But when I go to the checkout (goes to my ssl connection) the shopping cart is empty.

 

When I drop back out of the secure area, my item appears in the shopping cart.

 

What could be causing this error?

 

Where is the item data saved to? on the site or on the users PC?

 

Thanks,

 

James :blink:

Link to comment
Share on other sites

If I am not mistaken, the shopping cart data is stored on the users PC, unless you choose it to be stored on the MySQL database. You might try reinstalling osCommerce and click the button that says "Database" for the option "Session Storage:", or the "Files" button.

________________________________________

 

Shin: A device for finding furniture in the dark.

Link to comment
Share on other sites

Your HTTPS cookie domain should match the fully qualified host name for you HTTPS server.

 

define('HTTPS_SERVER', 'https://secure.mydomain.com');

define('HTTPS_COOKIE_DOMAIN', 'secure.mydomain.com');

while (!succeed) {try()};

 

GMT -6:00

Link to comment
Share on other sites

What my config.php looks like this :

 

define('HTTP_SERVER', 'http://www.mydomain.co.uk');

define'HTTPS_SERVER', 'https://www.secureserver3.co.uk/ssl/www.mydomain.co.uk');

define('ENABLE_SSL', true);

define('HTTP_COOKIE_DOMAIN', '');

define('HTTPS_COOKIE_DOMAIN', '');

define('HTTP_COOKIE_PATH', '');

define('HTTPS_COOKIE_PATH', '');

 

What do u suggest I change it to?

Link to comment
Share on other sites

Just changed it to this and it works perfect!!!!!

 

define('HTTP_SERVER', 'http://www.mydomain.uk');

define('HTTPS_SERVER', 'https://www.secureserver3.co.uk/ssl/www.mydomain.co.uk'); define('ENABLE_SSL', true); // secure webserver for checkout procedure?

define('HTTP_COOKIE_DOMAIN', '');

define('HTTPS_COOKIE_DOMAIN', 'www.secureserver3.co.uk/ssl/www.mydomain.co.uk');

define('HTTP_COOKIE_PATH', '');

define('HTTPS_COOKIE_PATH', '');

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...