user_67 Posted May 17, 2006 Report Share Posted May 17, 2006 Hallo, ich m?cht ?ber einen SSL Proxy gehen. Nun habe ich berreits folgendes getan: 1. im Ordner /shop/includes configure.php define('HTTP_SERVER', 'http://www.domain.de';); // eg, http://localhost - should not be empty for productive servers define('HTTPS_SERVER', 'https://ssl-proxy/domain.de';); // eg, https://localhost - should not be empty for productive servers define('ENABLE_SSL', true); // secure webserver for checkout procedure? 2. im Ordner /shop/admin/includes configure.php define('HTTP_SERVER', 'http://www.domain.de';); // eg, http://localhost or - https://localhost should not be empty for productive servers define('HTTP_CATALOG_SERVER', 'http://www.domain.de';); define('HTTPS_CATALOG_SERVER', 'https://ssl-proxy/domain.de';); define('ENABLE_SSL_CATALOG', 'true'); // secure webserver for catalog module 3. im Ordner /shop/includes application_top.php // set the type of request (secure or not) $request_type = ($_SERVER['HTTP_X_FORWARDED_HOST'] == 'ssl-proxy') ? 'SSL' : 'NONSSL'; Nur passieren tut da gar nichts Wo muss ich da noch rumschrauben Wer hat das schonmal hinbekommen? Gibt es code Schnippsel? :closedeyes: Thanks Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.