up vote 0 down vote favorite
share [g+] share [fb]

For some reason, none of the code within

if (isset($_SERVER['PHP_AUTH_USER']) &&
    isset($_SERVER['PHP_AUTH_PW']))

{



// When the above is set, the code that is here will execute of course

}

is being executed for me. When I enter the correct username and password, the prompt box for the authorization again pops up. Wouldn't both fields be 'set' if they are correct and I press enter? But for some reason that is not the case. What can I be doing wrong? Thank you.

link|improve this question

72% accept rate
feedback

3 Answers

Run phpinfo() and see under "Server API" item. if it's CGI/FCGI, there is no [sensible] way to use HTTP auth from PHP.

link|improve this answer
it says CGI/FASTCGI – Newbie_25 Sep 7 '10 at 23:50
@newbie-25 well just forget it. use your already installed per-directory one or session-based auth. or find yourself a mod_php installation – Col. Shrapnel Sep 7 '10 at 23:52
feedback

Try $_SERVER['REMOTE_USER']. This works for me on a PHP 5.3 CGI + Apache installation.

link|improve this answer
feedback

There is a 'sensible way' to use HTTP Basic Auth in CGI-mode PHP: in the .htaccess use

RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}]

and in the PHP use

list($_SERVER['PHP_AUTH_USER'], $_SERVER['PHP_AUTH_PW']) = 
  explode(':', base64_decode(substr($_SERVER['HTTP_AUTHORIZATION'], 6)));
link|improve this answer
For some reason, on my server I had to use $_SERVER['REDIRECT_HTTP_AUTHORIZATION'] – ChrisV Oct 17 '11 at 11:40
feedback

Your Answer

 
or
required, but never shown

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