RE: Need to know how to turn SSL on

The_Bear <[email protected]> 12 Sep 2003 19:36:07 -0000
Newsgroups gmane.comp.web.oscommerce.general
Message-ID <5e1953a80dbdd7db9279fa51f1a8c09a@osCommerce-Forums>
This message was sent from: General Support
http://forums.oscommerce.com/viewtopic.php?p=228527#228527
----------------------------------------------------------------

In both your catalog and admin/includes/configure.php
[code]define('HTTP_SERVER', 'http://www.yourdomain.com'); // eg, http://localhost - should not be empty for productive servers
  define('HTTPS_SERVER', 'your secure url'); // eg, https://localhost - should not be empty for productive servers
  define('ENABLE_SSL', true); // secure webserver for checkout procedure?[/code]

The_Bear