Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

How to disable SSL?


imlifu

Recommended Posts

I fresh installed oscommerce using SSL enabled, everything works fine until I can't creat an account and check out, etc, now I want to remove SSL because I am using a free webhosting no SSL enabled. Is it possible to correct it without fresh install oscommerce again? thanks in advance for any support.

Link to comment
Share on other sites

I fresh installed oscommerce using SSL enabled, everything works fine until I can't creat an account and check out, etc, now I want to remove SSL because I am using a free webhosting no SSL enabled. Is it possible to correct it without fresh install oscommerce again? thanks in advance for any support.

 

go to

 

catalog/includes/configure.php

 

be sure that this file can be modified (set its permissions to 644 instead of 444

 

and change the line

 

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

 

to

 

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

 

do the same for the admin side for the file

catalog/admin/includes/configure.php

Link to comment
Share on other sites

go to

 

catalog/includes/configure.php

 

be sure that this file can be modified (set its permissions to 644 instead of 444

 

and change the line

 

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

 

to

 

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

 

do the same for the admin side for the file

catalog/admin/includes/configure.php

 

Thank you Hugh very much, it solved out the problem:)

Link to comment
Share on other sites

Archived

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

×
×
  • Create New...