On Tue, Mar 31, 2015 at 2:19 AM, Johan Corveleyn <jcor...@gmail.com> wrote:
...
> I think I've found a workaround: it seems the tree walk by mod_dav is
> avoided when the request has a header Depth with value 0. I've tried
> adding
>
>     <If "%{REQUEST_METHOD} == 'COPY'">
>         RequestHeader set Depth 0
>     </If>

Apparently this workaround is specific to httpd 2.4 or higher
(<If></If> is only available as of 2.4). Since the problem also exists
in httpd 2.2.25 or higher, this might be a better way to do this:

    SetEnvIf Request_Method COPY method_is_copy
    RequestHeader set Depth 0 env=method_is_copy

This should work both in 2.4 and 2.2.

-- 
Johan

Reply via email to