1800contacts Posted May 12, 2003 Posted May 12, 2003 The website i am working on is http://1800contacts.ca/catalog/. I need to make checkout_payment.php secure in order to take credit card payment. (a.k.a , shows 'https' at the url and the little lock at the bottom of the browser) My webhost told me the link to the secure server is www.webhost4me.com/1800contacts_ca . I made the following changes: In catalog/includes/configure.php: define('HTTP_SERVER', 'http://1800contacts.ca'); // eg, http://localhost - should not be empty for productive servers define('HTTPS_SERVER', 'https://www.webhost4me.com/1800contacts_ca/'); // eg, https://localhost - should not be empty for productive servers define('ENABLE_SSL', true); // secure webserver for checkout procedure? Should I add '/catalog' after both of the above urls? In admin/includes/configure.php: define('HTTP_SERVER', 'http://1800contacts.ca'); // eg, http://localhost or - https://localhost should not be NULL for productive servers define('HTTP_CATALOG_SERVER', 'http://1800contacts.ca/catalog'); define('HTTPS_CATALOG_SERVER', 'https://www.webhost4me.com/1800contacts_ca/catalog'); define('ENABLE_SSL_CATALOG', 'true'); // secure webserver for catalog module Once again, i am not sure whether i should add 'catalog' after the url or not... After I added some products and checked out, nothing really happens. Can anyone please tell me what did i do wrong? Thanks. Richard da bomb
Guest Posted May 12, 2003 Posted May 12, 2003 No, you dont have to put catalog in your url and your catalog/includes/configure.php is ok so i would talk to your webhost, is Shared SSL is probably not set up right HTH The_Bear
Marcusantonio Posted May 12, 2003 Posted May 12, 2003 Is ther a way to test the SSL installation to see if that is the problem. A litmus test to isolate the problem to the SSL installation or link. I am having the same problem. And my two configure.php files are like Richards above. Mark
Recommended Posts
Archived
This topic is now archived and is closed to further replies.