toneharb Posted July 29, 2004 Posted July 29, 2004 Hi there .. I have shared SSL , i can access like this https://servername/~username and get a padlock , I am trying to work out how to configure osCommerce to show padlock at checkout so that i can access it as http://www.mydomain.com Any help would be fab Thanks Tony
toneharb Posted July 29, 2004 Author Posted July 29, 2004 Have since looked at config.php and changed first 4 define statements but still no padlock at checkout ... :o <?php /* osCommerce, Open Source E-Commerce Solutions http://www.oscommerce.com Copyright © 2003 osCommerce Released under the GNU General Public License */ // Define the webserver and path parameters // * DIR_FS_* = Filesystem directories (local/physical) // * DIR_WS_* = Webserver directories (virtual/URL) define('HTTP_SERVER', 'http://securebuying.net'); // eg, http://localhost - should not be empty for productive servers define('HTTP_CATALOG_SERVER', 'http://securebuying.net'); define('HTTPS_CATALOG_SERVER', 'https://ssl2.hyperdrivedns.com/~secureb'); define('ENABLE_SSL', 'true'); // secure webserver for catalog module define('DIR_FS_DOCUMENT_ROOT', '/home/secureb/public_html/'); // where the pages are located on the server define('DIR_WS_ADMIN', '/admin/'); // absolute path required define('DIR_FS_ADMIN', '/home/secureb/public_html/admin/'); // absolute pate required define('DIR_WS_CATALOG', '/'); // absolute path required
toneharb Posted July 29, 2004 Author Posted July 29, 2004 Have since further amended config.php to following , to reflect what others have done on this forum - hasn't made a blind bit of difference <?php /* osCommerce, Open Source E-Commerce Solutions http://www.oscommerce.com Copyright © 2003 osCommerce Released under the GNU General Public License */ // Define the webserver and path parameters // * DIR_FS_* = Filesystem directories (local/physical) // * DIR_WS_* = Webserver directories (virtual/URL) define('HTTP_SERVER', 'http://securebuying.net'); // eg, http://localhost - should not be empty for productive servers define('HTTPS_SERVER','https://ssl2.hyperdrivedns.com/~secureb'); define('ENABLE_SSL', 'true'); // secure webserver for catalog module define('DIR_FS_DOCUMENT_ROOT', '/home/secureb/public_html/'); // where the pages are located on the server define('DIR_WS_ADMIN', '/admin/'); // absolute path required define('DIR_FS_ADMIN', '/home/secureb/public_html/admin/'); // absolute pate required
Recommended Posts
Archived
This topic is now archived and is closed to further replies.