We just switched servers from Unix to Windows NT and all our authentication stopped
working. It brings up an internal server error. We installed the newest PHP and the
newest Apache software. Pretty much everything else works, except the authentication
won't work. I've tried many different versions of the code. Here is the last version
that I tried. Any ideas on what might be causing this
server error?
<?php
if (!isset($PHP_AUTH_USER)){
header( 'WWW-Authenticate: Basic realm="Private"' );
header( 'HTTP/1.0 401 Unauthorized' );
echo 'Authorization Required.';
exit;
} else {
echo 'Success!';
}
?>
--
PHP Windows Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php