Re: [PHP] how to check http:// or https:// ?

2005-08-06 Thread Jochem Maas
[EMAIL PROTECTED] wrote: Right. Tested and found $_SERVER['HTTPS'] has to be 'on' :) But, there is something in the code Jochem wrote that bothers me for a while: if(isset($_SERVER['HTTPS']) $_SERVER['HTTPS']=='on') { echo 'you are secure(-ish?)'; } Doesn't $_SERVER['HTTPS']=='on'

[PHP] how to check http:// or https:// ?

2005-08-05 Thread [EMAIL PROTECTED]
Hi, I need to check does URL use http or https? Right now I use this code: if(preg_match('/https:/', $_SERVER['SCRIPT_URI']) == false) { header('location: [URL]https://www.test.com/test.php[/URL]'); exit; } but I am sure there is much better solution. :) -- PHP General Mailing List

Re: [PHP] how to check http:// or https:// ?

2005-08-05 Thread Marco Tabini
IIRC, if you're using Apache you can check If (isset ($_SERVER['HTTPS'])) You can also check this thread: http://beeblex.com/lists/index.php/php.general/190410?h=%24_SERVER%5B%27HTTP S%27%5D -- BeebleX - The PHP Search Engine http://beeblex.com On 8/5/05 2:05 PM, [EMAIL PROTECTED] [EMAIL

Re: [PHP] how to check http:// or https:// ?

2005-08-05 Thread [EMAIL PROTECTED]
Thanks Marco! :) I was looking for something like this on phpinfo() but didn't found? -afan Marco Tabini wrote: IIRC, if you're using Apache you can check If (isset ($_SERVER['HTTPS'])) You can also check this thread:

Re: [PHP] how to check http:// or https:// ?

2005-08-05 Thread Marco Tabini
On 8/5/05 2:43 PM, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Thanks Marco! :) I was looking for something like this on phpinfo() but didn't found? That's because it shows up only if you are under HTTPS! :-) Marco -afan Marco Tabini wrote: IIRC, if you're using Apache you can

Re: [PHP] how to check http:// or https:// ?

2005-08-05 Thread Jochem Maas
Marco Tabini wrote: On 8/5/05 2:43 PM, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: Thanks Marco! :) I was looking for something like this on phpinfo() but didn't found? That's because it shows up only if you are under HTTPS! :-) AFAICT tell you should check whether the value is actually

Re: [PHP] how to check http:// or https:// ?

2005-08-05 Thread Marco Tabini
On 8/5/05 3:24 PM, Jochem Maas [EMAIL PROTECTED] wrote: SIDENOTE REGARDING BEEBLEX.COM: I just added a bookmark in firefox to beeblex.com as follows http://beeblex.com/search.php?d=ALLDBs=%s and I gave it a keyword of 'beeb' now I can go to firefox and type 'beeb HTTPS' to get an direct

Re: [PHP] how to check http:// or https:// ?

2005-08-05 Thread Jochem Maas
Marco Tabini wrote: On 8/5/05 3:24 PM, Jochem Maas [EMAIL PROTECTED] wrote: SIDENOTE REGARDING BEEBLEX.COM: I just added a bookmark in firefox to beeblex.com as follows http://beeblex.com/search.php?d=ALLDBs=%s and I gave it a keyword of 'beeb' now I can go to firefox and type 'beeb HTTPS'

Re: [PHP] how to check http:// or https:// ?

2005-08-05 Thread [EMAIL PROTECTED]
Right. Tested and found $_SERVER['HTTPS'] has to be 'on' :) But, there is something in the code Jochem wrote that bothers me for a while: if(isset($_SERVER['HTTPS']) $_SERVER['HTTPS']=='on') { echo 'you are secure(-ish?)'; } Doesn't $_SERVER['HTTPS']=='on' automatically means

Re: [PHP] how to check http:// or https:// ?

2005-08-05 Thread Matt Blasinski
True, but if you check that it's equal to 'on' and it doesn't exist, you'll get a warning. If you want to avoid the warning, check that it exists first. Matt I mean, if $_SERVER['HTTPS'] exists doesn't mean it's equal to 'on' but if $_SERVER['HTTPS'] == 'on' IT MEANS $_SERVER['HTTPS']