Hi,
I configured inserting following in the httpd.conf :
<Directory "C:/Programme/Apache 2/htdocs/">
AllowOverride FileInfo AuthConfig Limit
Options MultiViews Indexes SymLinksIfOwnerMatch IncludesNoExec
<Limit GET POST OPTIONS PROPFIND>
Order allow,deny
Allow from all
</Limit>
<LimitExcept GET POST OPTIONS PROPFIND>
Order deny,allow
Deny from all
</LimitExcept>
</Directory>
then configured the .htacess file inserting this
AuthUserFile
C://Programme/Apache2/htdocs/phpmy/.htpasswd
AuthName Sorry!
AuthType Basic
require valid-user
Everything works the password promt comes twice. The first input fails, the
second works.
why is that ?
thanks for any help
rolf