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 like this simple http authenticating for some non-critical pages.

<?php
if (!isset($_SERVER['PHP_AUTH_USER'])) {
  header('WWW-Authenticate: Basic realm="My Realm"');
  header('HTTP/1.0 401 Unauthorized');
  echo 'Text, der gesendet wird, falls der Benutzer auf Abbrechen drückt';
  exit;
} else {
  echo "<p>Hallo {$_SERVER['PHP_AUTH_USER']}.</p>";
  echo "<p>Sie gaben {$_SERVER['PHP_AUTH_PW']} als Passwort ein.</p>";
}
?>

Now I am trying to implement it on server with php 5.3 and it doesnt work. Whats wrong?

I type name and password, press enter and pages show me dialog again. No values in $_SERVER['PHP_AUTH_USER'].

share|improve this question
Is PHP running as an Apache module? – Pekka 웃 Mar 8 '11 at 14:40
4  
"It doesn't work." isn't a clear description of what went wrong. – Incognito Mar 8 '11 at 14:53
why don't u put in your login, update the script to do a var_dump($_SERVER);exit;, then press submit? – ajreal Mar 8 '11 at 14:57
2  
This is the example code from php.net/manual/en/features.http-auth.php - you should also read the heaps of examples, particularly the ones involving HTTP_AUTHORIZATION and REDIRECT_ variables, which can be set alternatively (depending on PHP SAPI and Apache config). – mario Mar 8 '11 at 15:00

1 Answer

I am experiencing the same problem. According to me service provider, this is an old version of php that doesn't work on php 5.5 & higher. You will have to find a newer version of php.

share|improve this answer
2  
(To the nay-sayers, this IS an answer. He's saying that a possible solution is to upgrade. Now this may or may not make sense, but it is a genuine attempt at an answer ... IMO.) – Stephen C Jun 10 '12 at 11:57

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.