Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

I mad again


Guest

Recommended Posts

3 days of suffering. I can’t install SSL on my site.

I purchase certificate from my hosting Co. It is not shared SSL – it’s privet.

My HostingCo installed it. After I tried to change code as recommended:

 

In catalog/includes/configure.php, set the SSL to "true"; it should look something like this

near the top, if you assigned the SSL to www.yoursite.com:

define('HTTP_SERVER', 'http://www.yoursite.com');

define('HTTPS_SERVER', 'https://www.yoursite.com');

define('ENABLE_SSL', [true); // secure webserver for checkout procedure?

define('HTTP_COOKIE_DOMAIN', '.yoursite.com');

define('HTTPS_COOKIE_DOMAIN', '.yoursite.com');

 

(7) In admin/includes/configure.php, set the SSL to "true" and add an "s" after all

the http's. So it'll look something like this, if assigned to www.yoursite.com:

define('HTTP_SERVER', 'https://www.yoursite.com/');

define('HTTP_CATALOG_SERVER', 'https://www.yoursite.com/');

define('HTTPS_CATALOG_SERVER', 'https://www.yoursite.com/');

define('ENABLE_SSL_CATALOG', 'true'); // secure webserver for catalog module

 

And I’ve got “fatal error” answer and couldn’t change the code. One more detail/ my index page is HTTPS but other pages are HTTP.

Where is my mistake? https://925sale.com

Link to comment
Share on other sites

In catalog/includes/configure.php

 

define('ENABLE_SSL', [true); // secure webserver for checkout procedure?

 

should be

 

define('ENABLE_SSL', 'true'); // secure webserver for checkout procedure?

Link to comment
Share on other sites

define('ENABLE_SSL', [true); // secure webserver for checkout procedure?

 

shoukld be

define('ENABLE_SSL', true); // secure webserver for checkout procedure?

 

also

 

define('HTTP_CATALOG_SERVER', 'https://www.yoursite.com/');

 

should not have https

 

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.

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...