I use Apache for win 32 as my server.
Windows me as my platform.
And set Apache to protection one directory.
Like this:
////////////////////////////////////////
<Directory "c:/apache/htdocs/temp/">
AuthName "TEST"
AuthType Basic
AuthUserFile c:/apache/userdata/data1
require valid-user
</Directory>
////////////////////////////////////////
Then I put a info.php file into the directory.
Open the page.
I can find REMOTE_USER in the Enviroment table.
But REMOTE_PASSWORD not.
Cause by this,I can't use phpmyadmin in a adv_auth mode.
Does someone know how to make $REMOTE_PASSWORD useable?
thanks.