Brian Bloom - 2005-01-14

They changed some security settings with the newer versions of PHP.  If you are seeing a scenario (on a new install or PHP upgrade) where you are not prompted to log in and the top right corner says "Logged in as" with no name, here's something to try.

In the main notes directory, edit 'inc.php' and change (around line 11) from:
$REMOTE_USER = $_SERVER["PHP_AUTH_USER"];
to
$REMOTE_USER = $_SERVER['REMOTE_USER'];
And try again.