vote up 1 vote down star

I've seen many tutorials online that says you need to check $_SERVER['HTTPS'] if the server is connection is secured with HTTPS. My problem is that on some of the servers I use, $_SERVER['HTTPS'] is an undefined variable that results in an error. Is there another variable I can check that should always be defined?

Just to be clear, I am currently using this code to resolve if it is an HTTPS connection:

if(isset($_SERVER['HTTPS']))
{
    if ($_SERVER["HTTPS"] == "on") 
    {
        $secure_connection = true;
    }
}
flag

By any chances, those servers where $_SERVER['HTTPS'] is undefined are running on HTTPS? – Freddy Jul 23 at 23:50
Actually, one of them is my home WAMP server. And I don't believe it is running on HTTPS. – Chacha102 Jul 23 at 23:51

4 Answers

vote up 4 vote down check

Chacha, per the PHP documentation: "Set to a non-empty value if the script was queried through the HTTPS protocol." So your if statement there will return false in many cases where HTTPS is indeed on. You'll want to verify that $_SERVER["HTTP"] exists and is non-empty. In cases where HTTPS is not set correctly for a given server, you can try checking if $_SERVER['SERVER_PORT'] == '443'.

link|flag
use $_SERVER['SERVER_PORT'] can be tricky... for example ispconfig uses port 81 as secure port so lets say that 443 is the "default" port for ssl. – Gabriel Sosa Jul 24 at 1:58
vote up 1 vote down

You could check $_SERVER['SERVER_PORT'] as SSL normally runs on port 443, but this is not foolproof.

link|flag
$_SERVER['SERVER_PORT'] does however. – Chacha102 Jul 24 at 0:01
vote up 0 vote down

You could check $_SERVER['REQUEST_URI']. I believe it will start with either "HTTP://" or "HTTPS://" as appropriate. You could also check $_SERVER['SERVER_PORT'] for 80 vs. 443, though of course it's possible to run both types of server on alternate ports, so that's perhaps less reliable.

link|flag
1  
REQUEST_URI never contains http:// or https:// – hobodave Jul 23 at 23:56
I would believe "not always," but "never" is simply false. imgur.com/PdFDJ.png – Tim Sylvester Jul 24 at 2:02
vote up -2 vote down

As per hobodave's post: "Set to a non-empty value if the script was queried through the HTTPS protocol."

if (!empty($_SERVER['HTTPS']))
{
    $secure_connection = true;
}
link|flag
It could contain the value "off", making that wrong. – Chacha102 Jul 24 at 0:41

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.