Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

SSL For catlog/admin folder


stavin

Recommended Posts

Posted

My SSL functionality is limited to logging in, shopping-cart-mode transactions, credit card transactioning, BUT how about site administration?

 

Whenever I point to catalog/admin, all the links start pointing to nonssl versions of the links even if I start with https://mysite.com/catalog/admin...

 

My includes/configure.php and admin/includes/configure.php contain the lines pertinent to ssl:

define('HTTP_SERVER', 'http://mysite.com'); // eg, http://localhost - should not be empty for productive servers

? define('HTTP_CATALOG_SERVER', 'http://mysite.com');

? define('HTTPS_CATALOG_SERVER', 'https://www.mysite.com');

? define('ENABLE_SSL_CATALOG', 'true'); // secure webserver for catalog module

? define('DIR_FS_DOCUMENT_ROOT', '/home/etctrade/public_html/catalog/'); // where the pages are located on the server

? define('DIR_WS_ADMIN', '/catalog/admin/'); // absolute path required

? define('DIR_FS_ADMIN', '/home/etctrade/public_html/catalog/admin/'); // absolute pate required

? define('DIR_WS_CATALOG', '/catalog/'); // absolute path required

? define('DIR_FS_CATALOG', '/home/etctrade/public_html/catalog/'); // absolute path required

? define('DIR_WS_IMAGES', 'images/');

? define('DIR_WS_ICONS', DIR_WS_IMAGES . 'icons/');

? define('DIR_WS_CATALOG_IMAGES', DIR_WS_CATALOG . 'images/');

? define('DIR_WS_INCLUDES', 'includes/');

? define('DIR_WS_BOXES', DIR_WS_INCLUDES . 'boxes/');

? define('DIR_WS_FUNCTIONS', DIR_WS_INCLUDES . 'functions/');

? define('DIR_WS_CLASSES', DIR_WS_INCLUDES . 'classes/');

? define('DIR_WS_MODULES', DIR_WS_INCLUDES . 'modules/');

? define('DIR_WS_LANGUAGES', DIR_WS_INCLUDES . 'languages/');

? define('DIR_WS_CATALOG_LANGUAGES', DIR_WS_CATALOG . 'includes/languages/');

? define('DIR_FS_CATALOG_LANGUAGES', DIR_FS_CATALOG . 'includes/languages/');

? define('DIR_FS_CATALOG_IMAGES', DIR_FS_CATALOG . 'images/');

? define('DIR_FS_CATALOG_MODULES', DIR_FS_CATALOG . 'includes/modules/');

? define('DIR_FS_BACKUP', DIR_FS_ADMIN . 'backups/');

 

Again, all the critical parts of my website that, by law, require SSL encryption do have this feature enabled, but site administration via catalog/admin is still unsecure. How do I fix this?

 

Thanks.

Archived

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

×
×
  • Create New...