Erweiterte Version xtcPC-S-B > Noch gefundene Fehler
SSL Einstellungen xtcPC-S-B vor 06.09.2010
(1/1)
genndus:
Hallo,
in den Dateien:
includes/application_top.php
includes/application_top_export.php
War bis eben noch die Einstellung für meinen SSL-Proxy aktiv, statt die für ein Eigenses Zertifikat.
--- Code: ---// Eigenes Zertifikat set the type of request (secure or not)
// $request_type = (getenv('HTTPS') == '1' || getenv('HTTPS') == 'on') ? 'SSL' : 'NONSSL';
// SSL-Proxy Für 1und1 div. Andere
$request_type = ($_SERVER['HTTP_X_FORWARDED_HOST'] == 'ssl.london.ispgate.biz') ? 'SSL' : 'NONSSL';
// SSL-Proxy Für Strat div. Andere
// $request_type = (substr($_SERVER['SCRIPT_URI'],0,5) == 'https') ? 'SSL' : 'NONSSL';
--- Ende Code ---
Für ein eigenes Zertifikat sollte das so aussehen:
--- Code: ---// Eigenes Zertifikat set the type of request (secure or not)
$request_type = (getenv('HTTPS') == '1' || getenv('HTTPS') == 'on') ? 'SSL' : 'NONSSL';
// SSL-Proxy Für 1und1 div. Andere
// $request_type = ($_SERVER['HTTP_X_FORWARDED_HOST'] == 'ssl.london.ispgate.biz') ? 'SSL' : 'NONSSL';
// SSL-Proxy Für Strat div. Andere
// $request_type = (substr($_SERVER['SCRIPT_URI'],0,5) == 'https') ? 'SSL' : 'NONSSL';
--- Ende Code ---
Gruß
genndus
Navigation
[0] Themen-Index
Zur normalen Ansicht wechseln