Hello,
for authentication of users on my apache webserver I want to use
htdigest. So I created a new htdigest database file. Now my .htaccess
file looks like this:
AuthUserFile /usr/local/apache/conf/.htpasswd
AuthGroupFile /usr/local/apache/conf/.htgroup
AuthDigestFile /usr/local/apache/conf/.htdigest
AuthName java
AuthType Digest
<Limit GET POST>
require group java
</Limit>
But when I connect to the directory containing this .htaccess file,
using the Netscape browser, I get an error message telling me that on my
web server is something misconfigured.
Now when I delete the line "AuthDigestFile
/usr/local/apache/conf/.htdigest" and change the entry AuthType from
Digest to Basic, everything works fine.
Can anybody tell me what goes wrong?
Thanks, Lars.