Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Remove HTTPS / SSL from site (already set configure.php SSL to false)


jillbalkus

Recommended Posts

Posted

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

Posted
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

Posted

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.

Posted
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!

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...