Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

Setting up shared SSL


toneharb

Recommended Posts

Posted

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

Posted

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

Archived

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

×
×
  • Create New...