This is a discussion on ckeckout help within the osCMax v2 Installation issues forums, part of the osCMax v2.0 Forums category; I have just installed new oscmax, and when i inserted a product into basket everthing was fine. Went to checkout, ...
| |||||||
| Register | FAQ | Members List | Calendar | Mark Forums Read |
|
#1
| |||
| |||
| I have just installed new oscmax, and when i inserted a product into basket everthing was fine. Went to checkout, had to sign in then it says there is no product in basket and asks me to sign in again. Help please, test site - osCMax v2.0 : Welcome to AABox.com's osCMax v2.0 - change this in /english/index.php Thanks |
|
#2
| |||
| |||
| Hi Just looked at your shop when you go to your url and then try to add to cart which is all ok apart from your shopping cart count is not displaying but when you click on checkout it takes you to a new URL? this looks like configuration error on in the configuration.php to me it looks like your shop files are located in two places take a look below are you shaw that checkout url is http and not https is your checkout shop path not on secure serveside? recheck your configuration files for both shop paths all the best shop url------ #-biginto.net/blankdiscs/catalog/index.php?osCsid=b9806411e59a6058dfa94b6a4494186f -----checkout url------ # -df29.dot5hosting.com/~biginton/blankdiscs/catalog/checkout_shipping.php?osCsid=b9806411e59a6058dfa94 b6a4494186f Last edited by automotiveuk; 04-15-2007 at 04:23 AM. |
|
#3
| ||||
| ||||
| In configure.php Change: define('STORE_SESSIONS', ''); // leave empty '' for default handler or set to 'mysql' to define('STORE_SESSIONS', 'mysql'); // leave empty '' for default handler or set to 'mysql' Reason: Your using a Shared SSL certificate as supplied from your hosting company. This certificate is NOT on the same "domain name" as your website. Thus Session ID stored in the URL of your browser from your "domain name" will only work on that domain/server. The server of your "domain name" has session data (in files) that belong to that Session ID in your browser and is unique for that DOMAIN/SERVER. This information CAN NOT be transfered to another "domain name". Now STORING that server based session data instead in MYSQL - then that can be poled from any server (with the proper username/password etc...). Understand? Good. Good Luck! |