Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have recently started learning PHP. I made a basic website and wanted to basically password it. I'd appreciate it if someone could tell me why this doesn't work. I know it doesn't work because I've tried it; I just don't understand why.

<?php
$user='user';
$pass='pass';

header('HTTP/1.1 401 Unauthorized');
header('WWW-Authenticate: Basic realm='.'hello');
if($_SERVER['PHP_AUTH_USER']==$user && $_SERVER['PHP_AUTH_PW']==$pass)
    echo 'Authorized';
else
    exit('Exiting');
?>
REST OF WEBSITE

I know the 'correct' way of doing it is like this:

<?php
if(!isset($_SERVER['PHP_AUTH_USER']))
{
    header('HTTP/1.1 401 Unauthorized');
    header('WWW-Authenticate: Basic realm='.'hello');
    exit('Exiting');
}
else
{
$user='user';
$pass='pass';
   if($_SERVER['PHP_AUTH_USER']==$user && $_SERVER['PHP_AUTH_PW']==$pass)
        echo 'Authorised';
    else
    {
        header('HTTP/1.1 401 Unauthorized');
        header('WWW-Authenticate: Basic realm='.'hello');
        exit('Exiting');
    }
}
?>
REST OF WEBSITE

I'd appreciate it if someone could atleast point me in the right direction.

Thanks for your time.

share|improve this question
1  
Also note that PHP_AUTH_USER and _PW are only present for the mod_php setup, not on F/CGI configurations. – mario Jan 7 '12 at 15:53

2 Answers

up vote 3 down vote accepted

When using HTTP authentication, your script is run twice: the first time, $_SERVER['PHP_AUTH_USER'] is unset, and you have to tell the browser that the page needs authentication. Then the browser reloads the page, though this time $_SERVER['PHP_AUTH_USER'] contains the username and $_SERVER['PHP_AUTH_PW'] the password that the user has provided. If this matches the correct credentials ($user and $pass), you would go on to send the page to the browser.

Your code does not differentiate these two cases, and thus it will tell the browser that it requires a username and password, even when the correct credentials already have been sent.

share|improve this answer
Thanks for your reply. I never relised that the script was run twice. It's as though it stores the users credentials, then exits and re-runs itself. – user968243 Jan 7 '12 at 16:02
It's always run in full, but the browser won't display any page but instead it displays the login-box. – hakre Jan 7 '12 at 16:13
I assume it gets to this line: "header('WWW-Authenticate: Basic realm='.'hello');" then waits for the user, then when the user clicks OK, it refreshes and re-runs itself from the beginning. If the user clicks cancel though, it just keep going normal. – user968243 Jan 7 '12 at 16:20
No, the script will always run in full. Always. – hakre Jan 7 '12 at 16:44
If I click 'OK', it will appear to re-run itself. What makes it run itself again? If it runs itself in full, why doesn't it just get to the end, and stop? – user968243 Jan 7 '12 at 16:56
show 1 more comment

Using this line:

header('HTTP/1.1 401 Unauthorized');

will tell the browser, that the request failed. As you use it for every request, every request fails.

That's why in the second example it is not always executed but only conditionally.

I created a little demo example. Your browsers login box will be displayed, you can enter anything you like then press cancel if you want to prevent displaying the login-box any longer.

You will then see which data is provided to the PHP script.

share|improve this answer
Your explanation does not really make sense to me. If you run your demo example without the 'problem' line ("header('HTTP/1.1 401 Unauthorized');"), you will find that it does exactly the same thing! Frxstrem's response makes more sense. – user968243 Jan 7 '12 at 16:39
Maybe you need to more specifically tell what you think the problem is. If you see the demo example code, it has two header lines, behind each line it's written which does what. – hakre Jan 7 '12 at 16:43
I read that. I reckon the problem is what the guy below me wrote. That atleast makes sense to me. – user968243 Jan 7 '12 at 17:09

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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