Jump to content
xt:Commerce Community Forum

SSL funktioniert nicht


Recommended Posts

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 :wacko:

Wo muss ich da noch rumschrauben :unsure:

Wer hat das schonmal hinbekommen? Gibt es code Schnippsel? :closedeyes:

Thanks :cool:

Link to comment
Share on other sites

Archived

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

×
  • Create New...