I added the following to the httpd.conf file
<Directory "c:/apache/htdocs/admin">
Options Indexes FollowSymLinks MultiViews
AuthType Basic
AuthName "Guestbook Admin"
AuthUserFile "c:/apache/pswrd/admin.passwd"
require valid-user
AllowOverride None
Order deny,allow
Allow from all
</Directory>
Created the admin.passwd file using the htpsswrd program... but the weird thing is, that it has only prompted me once for login and password information. The password was entered wrongly 3 times on purpose... after tha, I got the authorization failed error.
But then, apache never asks me for a login/password again... all directories, which are supposed to be protected aren't and can be accessed.
I don't understand, where the problem could be... has anybody got an idea?
Thanks!
Parick