Knowledgebase
Portal Home > Knowledgebase > I stopped using an SSL certificate and now my oscommerce checkout is broken
I stopped using an SSL certificate and now my oscommerce checkout is broken
| your site switching to SSL mode is not a hosting issue. Its a administration issue in OSCommerce. If you do not run an SSL certificate, you need to change the SSL URL's in your two configure.php files so that oscommerce knows not to use SSL mode.
the two configure.php file are located in your public web folder here,
/store_directory/includes/configure.php and /store_directory/admin/includes/configure.php
You need to edit the lines which look like this: ======================================================== define('HTTPS_CATALOG_SERVER', 'https://www.your_domain.com'); define('ENABLE_SSL_CATALOG', 'true'); // secure webserver for catalog module ========================================================
and make them look like this:
======================================================== define('HTTPS_CATALOG_SERVER', 'http://www.your_domain.com'); define('ENABLE_SSL_CATALOG', 'false'); // secure webserver for catalog module ========================================================
Hope this helps. If you require that we make the change this would be a programming and development issue, and you will need to submit a programming request to the "programming and development" department. This would result in a 15 minute labor charge.
|
Add to Favourites
Print this Article
|