mod_dav permissions problem.

Hello,
I've just installed mod_dav (as dso) on apache 1.3.33/FreeBSD 5.4/DirectAdmin

I can connect and browse the DAV resource...I supply a correct user/password. But when I click on one of the files listed I get HTTP 403 Permission Denied.

I followed these instructions:
http://www.webdav.org/mod_dav/install.html#apache

This is the modifications I've done to httpd.conf, partly in the global httpd.conf and partly in DirectAdmin´s Custom HTTPD Configurations.

LoadModule dav_module modules/libdav.so
AddModule mod_dav.c

DavLockDB /etc/httpd/var/DavLockDB

<VirtualHost 192.168.0.1:80>
Alias /backstage.dav /home/user/domains/domain.com/public_html/backstage
<Location /backstage.dav>
DAV On
DAVMinTimeout 600
LimitXMLRequestBody 1000000

#To enable editing of server-side scripts
ForceType text/plain

<LimitExcept GET HEAD OPTIONS>
Require valid-user
</Limit>
AuthType Basic
AuthName DAV
AuthUserFile /home/user/domains/domain.com/DAV.passwd
</Location>

I use dreamweaver to connect, and this is what dreaweaver says: "The desired action could not be completed because access to the desired resource was denied by the server. (HTTP Error 403)"

Any ideas...?

Thanks for any help...

 

 

 

 

Top