Bryan O'Neal wrote:
> Wow webdev does seem easy! But using .htaccess files gives me a ...
> /webdav/.htaccess: DAV not allowed here
Hmm... I haven't used .htaccess files with WebDAV but I *have* used
htpasswd. Basically, I created my users thusly:
htpasswd2 -c /etc/apache2/dav/dav_users.db <username>
And then I added these lines to the conf:
AuthType Basic
AuthName "WebDAV Server"
AuthUserFile /etc/apache2/dav/dav_users.db
<LimitExcept GET OPTIONS>
Require valid-user
</LimitExcept>
Order allow,deny
Allow from all
Kurt
---------------------------------------------------
PLUG-discuss mailing list -
PLUG-discuss@lists.plug.phoenix.az.us
To subscribe, unsubscribe, or to change you mail settings:
http://lists.PLUG.phoenix.az.us/mailman/listinfo/plug-discuss