martinryter Posted August 30, 2006 Posted August 30, 2006 I have my catalog set up and operational with the exception of SSL. My problem is not all of the oscommerce files are in the secure folder and I have no idea where to go look for them. As a result my SSL certificate is showing that my site might not be secure. https://accounts.anubis.cc Martin Ryter
ONION Posted August 30, 2006 Posted August 30, 2006 off the top of my head you need to go to includes/configure.php and admin/includes/configure.php and fill the details in. under secure server put the https domain and ssl enable=true instead of false. EG. define('HTTP_SERVER', 'http://yourdomain.co.uk'); define('HTTPS_SERVER', 'https://yourdomain.co.uk'); define('ENABLE_SSL', true); // secure webserver for checkout procedure? define('HTTP_COOKIE_DOMAIN', 'http://yourdomain.co.uk'); define('HTTPS_COOKIE_DOMAIN', 'https://yourdomain.co.uk');
Guest Posted August 30, 2006 Posted August 30, 2006 In your configure.php files I "think" you have; define('HTTP_SERVER', 'http://accounts.anubis.cc'); define('HTTPS_SERVER', 'https://anubis.cc'); define('ENABLE_SSL', true); // secure webserver for checkout procedure? define('HTTP_COOKIE_DOMAIN', 'http://accounts.anubis.cc'); define('HTTPS_COOKIE_DOMAIN', 'https://anubis.cc'); And it should be; define('HTTP_SERVER', 'http://accounts.anubis.cc'); define('HTTPS_SERVER', 'https://accounts.anubis.cc'); define('ENABLE_SSL', true); // secure webserver for checkout procedure? define('HTTP_COOKIE_DOMAIN', 'http://accounts.anubis.cc'); define('HTTPS_COOKIE_DOMAIN', 'https://accounts.anubis.cc'); You are missing the 'accounts' part on the HTTPS SERVER If you change anything make a backup first. :-"
martinryter Posted August 30, 2006 Author Posted August 30, 2006 I have checked in 2 configure.php files and have made the changes you suggested. They were as you thought. However still no success. the Security Alert window still appears when I go to the oscom pages. any other suggestions? thank you Martin Ryter In your configure.php files I "think" you have; define('HTTP_SERVER', 'http://accounts.anubis.cc'); define('HTTPS_SERVER', 'https://anubis.cc'); define('ENABLE_SSL', true); // secure webserver for checkout procedure? define('HTTP_COOKIE_DOMAIN', 'http://accounts.anubis.cc'); define('HTTPS_COOKIE_DOMAIN', 'https://anubis.cc'); And it should be; define('HTTP_SERVER', 'http://accounts.anubis.cc'); define('HTTPS_SERVER', 'https://accounts.anubis.cc'); define('ENABLE_SSL', true); // secure webserver for checkout procedure? define('HTTP_COOKIE_DOMAIN', 'http://accounts.anubis.cc'); define('HTTPS_COOKIE_DOMAIN', 'https://accounts.anubis.cc'); You are missing the 'accounts' part on the HTTPS SERVER If you change anything make a backup first. :-"
Recommended Posts
Archived
This topic is now archived and is closed to further replies.