myenv.php Version 1.2
SSL Variables
HTTP HOST: [productionoffroad.com]
Server Port: [80]
SSL Status: [Undefined!]
Fowarded Server: [Undefined!]
Fowarded Host: [Undefined!]
Fowarded By: [Undefined!]
$_SERVER['HTTPS']: [Undefined!]
Warning!!!
The standard osC SSL detection code in /includes/application_top.php may NOT detect your SSL status correctly!!!
Load: 2
this is with
// set the type of request (secure or not)
$request_type = (getenv('HTTPS') == '1') ? 'SSL' : 'NONSSL';
Still
myenv.php Version 1.2
SSL Variables
HTTP HOST: [productionoffroad.com]
Server Port: [80]
SSL Status: [Undefined!]
Fowarded Server: [Undefined!]
Fowarded Host: [Undefined!]
Fowarded By: [Undefined!]
$_SERVER['HTTPS']: [Undefined!]
Warning!!!
The standard osC SSL detection code in /includes/application_top.php may NOT detect your SSL status correctly!!!
Load: 2
With $request_type = ($_SERVER['HTTPS'] == 'on') ? 'SSL' : 'NONSSL';
cfgchk.php Version 1.2
File Permissions: 4444
Found HTTPS_SERVER:
define('HTTPS_SERVER', '
https://productionoffroad.com');
HTTPS URL passed check!
Found ENABLE_SSL.
define('ENABLE_SSL', true);
SSL enable passed check!
Found HTTPS_COOKIE_DOMAIN:
define('HTTPS_COOKIE_DOMAIN', 'productionoffroad.com');
HTTPS_COOKIE_DOMAIN line parsed!
Parsing application_top.php for SSL detection key...
Found SSL detection key:
$request_type = ($_SERVER['HTTPS'] == 'on') ? 'SSL' : 'NONSSL';
Done!
Edited by jazzyrosez, 21 January 2010 - 02:23 AM.