Can anyone help with a webav problem?
I can only install it to my root directory with my host however this then prevents people from leaving comments behind on my blog (installed to root).
I want webdav enabled elsewhere on the server but not so that it prevents comments.
Is it possible?
The root .htaccess is this…
#request password for anything but viewing:
AuthType Basic
AuthName "Editing Restricted"
AuthUserFile /usr/local/psa/home/vhosts/rusmil.co.uk/httpdocs/.DAVlogin-
<LimitExcept GET HEAD OPTIONS>
Require valid-user
</LimitExcept>
#turn off modsecurity for this directory:
<IfModule mod_security.c>
SecFilterEngine Off
SecFilterScanPOST Off
</IfModule>
#Allow a viewable list of files
Options +Indexes
#Disable Rewrite if its on
RewriteEngine Off
I’ve tried moving the .htaccess into only the folders I want webdav access but it’s not working.
Any ideas?