Re: how to enable PUT reqests for Apache 2
On Feb 16, 7:17 pm, Jim Patterson <Jim.Patterson.r...@ncf.ca> wrote:
> On Fri, 2007-02-16 at 13:16 -0800, santoshjosep...@gmail.com wrote:
>
> > LoadModule dav_module modules/mod_dav.so
> > LoadModule dav_fs_module modules/mod_dav_fs.so
>
> > <Location "C:/Tools/Apache Group/Apache2/htdocs/output">
> > Dav On
> > <LimitExcept GET HEAD OPTIONS PUT>
> > Allow from all
> > </LimitExcept>
> > </Location>
> > DavLockDB "C:/Tools/Apache Group/Apache2/DAVLock"
>
> You should be using a <Directory> directive here. Location expects a
> virtual path. Or, if .../htdocs is your web root, then it might be
> sufficient to say
> <Location "/output">
>
> You should check logs/access.log and logs/error.log to see if you can
> get any more information.
Thanks. '<Location "/output">' worked!!
|