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'].
var_dump($_SERVER);exit;, then press submit? – ajreal Mar 8 '11 at 14:57