dnsquest Posted September 19, 2005 Posted September 19, 2005 When the customer checks out it is protected by the ssl certificate but when I go to get the customer information including cc number the site redirects from https:// to http://. In other words the admin section is not secured. I wanted to know if their is a way to fix this. Thank to anyone in advance, Best Wishes, j
Sierrab Posted September 19, 2005 Posted September 19, 2005 2 things to do Protect the admin dir by .htaccess and Change the settings in amin/includes/configure.php to make the admin sun under https as an axample here are the first lines of my file... // Define the webserver and path parameters // * DIR_FS_* = Filesystem directories (local/physical) // * DIR_WS_* = Webserver directories (virtual/URL) define('HTTP_SERVER', 'https://secure.cheapnet.co.uk/~sierrab/catalog/'); // eg, http://localhost - should not be empty for productive servers define('HTTP_CATALOG_SERVER', 'http://www.peebeestore.com/catalog/'); define('HTTPS_CATALOG_SERVER', 'https://secure.cheapnet.co.uk/~sierrab/catalog/'); define('ENABLE_SSL_CATALOG', 'true'); // secure webserver for catalog module define('DIR_FS_DOCUMENT_ROOT', '/usr/users/sierrab/public_html/catalog/'); // where the pages are located on the server Steve
dnsquest Posted September 19, 2005 Author Posted September 19, 2005 Thank you very much it worked out great
Recommended Posts
Archived
This topic is now archived and is closed to further replies.