ich hatte die probleme auch.. ist lange her, kann mich an die zusammenhänge
nicht mehr erinnern. es scheitert aber wahrscheinlich am AuthName.
versuch doch mal einfach meine cfg..

.htpasswd sollte ausserhalb DocumentRoot verz. liegen.

das htpasswd sollte so aussehen:

daniel:WebDAV:44e9d7eab7fd9ac6b3xxx4518eaafbfc

so hinzugefügt:
/usr/local/apache2/bin/htdigest -c "/usr/local/apache2/user.passwd" WebDAV 
daniel



sind diese module geladen?

dav_module modules/mod_dav.so
dav_fs_module modules/mod_dav_fs.so
dav_lock_module modules/mod_dav_lock.so



DavLockDB "/usr/local/apache2/var/DavLock"
Alias /daten "/home/httpd/htdocs/daten"
DAVMinTimeout 600

<Directory "/home/httpd/htdocs/daten">
        Dav On
        Order Deny,Allow
        Allow from all

        AuthType Digest
        AuthName WebDAV
        AuthUserFile "/usr/local/apache2/user.passwd"
        require user daniel
</Directory>

Alias /htdocs "/home/httpd/htdocs"
<Directory "/home/httpd/htdocs">
        AuthName WebDAV
        AuthUserFile "/usr/local/apache2/user.passwd"
        AuthType Digest
        AllowOverride None
        Dav On
        Options Indexes FollowSymLinks +ExecCGI
        Order allow,deny

        Allow from all
        <Limit HEAD GET POST OPTIONS PROPFIND>
                Allow from all
        </Limit>
        <Limit MKCOL PUT DELETE LOCK UNLOCK COPY MOVE PROPPATCH>
                require user daniel
        </Limit>
</Directory>


viel glück

--------------------------------------------------------------------------
Apache HTTP Server Mailing List "users-de" unsubscribe-Anfragen an [EMAIL PROTECTED]
          sonstige Anfragen an [EMAIL PROTECTED]
--------------------------------------------------------------------------

Antwort per Email an