Hallo,
apache2
httpd.conf
AllowOverride All
Wenn du es local bei dir testest ist das ok, sonst würde ihc nicht All benützen.
.htaccess
AuthType Basic
authName "Usage"
authUserFile /var/www/html/usage/.htpasswd
order deny,allow
require user x5
Es würde auch folgendes reichen::
AuthUserFile /var/www/html/usage/.htpasswd
AuthName "Usage"
AuthType Basic
require valid-user
.htpasswd (erstellt mit htpasswd -cmdps .htaccess x5)
x5:{SHA}hdjXa6Fb3j7xYC9HfzL9ZOMv6lo=
/var/log/httpd/error_log:
Thu Aug 26 17:41:53 2004] [error] [client ****] user x5: authentication failure for "/usage": Password Mismatch
Generiere noch einmal ein PW und veruche es damit, alternativ findest du unter http://de.selfhtml.org/diverses/htaccess.htm die Möglichkeit PWs zu verschlüsseln.
Grüße
Thomas