jillbalkus Posted March 22, 2008 Posted March 22, 2008 Help! I've inherited an osCommerce site and the owner asked me to remove the SSL stuff since their certificate is expired. I've set the configure.php file to 'false' for SSL. Problem is the site links all direct to https (except on the homepage, which is fine). Any ideas on how to fix? The site is http://belovedbodycare.com Thanks, Jill
altea Posted March 22, 2008 Posted March 22, 2008 Help! I've inherited an osCommerce site and the owner asked me to remove the SSL stuff since their certificate is expired. I've set the configure.php file to 'false' for SSL. Problem is the site links all direct to https (except on the homepage, which is fine). Any ideas on how to fix? The site is http://belovedbodycare.com Thanks, Jill Hi Jill When I experienced this problem I modified the following string (around line 15) in configure.php to remove the secure server url to match the default site url as follows: define('HTTPS_SERVER', 'https://domain.com'); // eg, https://localhost - should not be empty for productive servers CHANGE TO: define('HTTPS_SERVER', 'http://domain.com'); // eg, https://localhost - should not be empty for productive servers (where domain.com is the the name of your site). Cheers /J
satish Posted March 23, 2008 Posted March 23, 2008 well in template owner might have placed some hard coded links. If so You need to change and use href thats the normal oscommerce practice. standards. Satish Ask/Skype for Free osCommerce value addon/SEO suggestion tips for your site. Check My About US For who am I and what My company does.
jillbalkus Posted March 24, 2008 Author Posted March 24, 2008 well in template owner might have placed some hard coded links. If so You need to change and use href thats the normal oscommerce practice. standards. Satish Thanks! Actually the config file had define('HTTP_SERVER', 'https://www.mysite.com) instead of define('HTTP_SERVER', 'http://www.mysite.com) My bad!
Recommended Posts
Archived
This topic is now archived and is closed to further replies.