All,
I am trying to set up Foxmarks to use my Apache webdav implementation
to store my Firefox bookmarks. Unfortunately when Foxmarks tries to
upload the appropriate files to the webserver it fails and I then see
the following message in my Apache error_log:
[Tue Sep 23 21:38:23 2008] [error] [client 10.2.6.2] client denied by
server configuration: /var/webdav
My Apache webdav configuration is shown below:
<IfModule mod_dav.c>
Alias /dav /var/webdav
DavMinTimeout 600
<Directory /dav>
Options None
Dav On
AllowOverride None
Order allow,deny
Allow from all
<Limit GET PUT POST DELETE PROPFIND PROPPATCH MKCOL
COPY MOVE LOCK UNLOCK>
AuthType Basic
AuthName "WebDav Restricted Repository"
AuthUserFile /var/webdav/.davpasswd
Require valid-user
</Limit>
</Directory>
</IfModule>
Thoughts?
-j