Pyrochik Posted June 22, 2004 Posted June 22, 2004 I cannot get the system to follow through with the checkout process. I can choose the products, and update the cart but when I click checkout, it asks me to log in, even when I logged in at the start. Even when I try to log in again , it does not move further than that. checkout_shipping.php, seems to be the problem, but I cannot see how. What am I doing wrong or what haven't I done?
Guest Posted June 22, 2004 Posted June 22, 2004 Your cookie settings are incorrect in catalog/includes/configure.php - post the top part of that file. Matti
Pyrochik Posted June 22, 2004 Author Posted June 22, 2004 Here they are // Define the webserver and path parameters // * DIR_FS_* = Filesystem directories (local/physical) // * DIR_WS_* = Webserver directories (virtual/URL) define('HTTP_SERVER', 'http://www.digitalphotouniverse.com.au'); // eg, http://localhost - should not be empty for productive servers define('HTTPS_SERVER', 'https://ssl4.westserver.net'); // eg, https://localhost - should not be empty for productive servers define('ENABLE_SSL', true); // secure webserver for checkout procedure? define('HTTP_COOKIE_DOMAIN', 'www.digitalphotouniverse.com.au'); define('HTTPS_COOKIE_DOMAIN', 'www.digitalphotouniverse.com.au'); define('HTTP_COOKIE_PATH', '/var/www/html/catalog/'); define('HTTPS_COOKIE_PATH', '/'); define('DIR_WS_HTTP_CATALOG', '/'); define('DIR_WS_HTTPS_CATALOG', '/digitalphotouniverse.com.au/'); 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', '/var/www/html/'); 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'); // eg, localhost - should not be empty for productive servers define('DB_SERVER_USERNAME', 'root');
Guest Posted June 22, 2004 Posted June 22, 2004 Try: define('HTTPS_SERVER', 'https://ssl4.westserver.net'); // eg, https://localhost - should not be empty for productive servers define('ENABLE_SSL', true); // secure webserver for checkout procedure? define('HTTP_COOKIE_DOMAIN', 'www.digitalphotouniverse.com.au'); define('HTTPS_COOKIE_DOMAIN', 'ssl4.westserver.net'); define('HTTP_COOKIE_PATH', '/var/www/html/catalog/'); define('HTTPS_COOKIE_PATH', '/digitalphotouniverse.com.au/'); Matti
Pyrochik Posted June 23, 2004 Author Posted June 23, 2004 Thanks for that. That was really great. It allow the checkout process, but, I think I did something stupid, as logging in and logging out of the site produces a 404 error saying : Not Found The requested URL /HTTP_SERVER/index.php was not found on this server. The following is the path it tried to take. https://ssl4.westserver.net/digitalphotouni...3fae5abbe44ded9
jsegundo1 Posted July 1, 2004 Posted July 1, 2004 I can't get to checkout either for some reason. I get a 404 File Not Found Error everytime. Would anybody be able to help me out with this please? It's driving me crazy.
Recommended Posts
Archived
This topic is now archived and is closed to further replies.