[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

Using apache WebDav and svn at the same time in different directory

From: Alexis Boutillier <alexis.boutillier_at_libertysurf.fr>
Date: 2004-10-06 12:30:25 CEST

I want to use WebDav capability (with "Dav on" directive) in the main
"/" directory and to use svn in the "/svn" subdirectory (with "Dav svn"
directive).

But apache complain about the fact that it couldn't use a different Dav
type in a subdirectory of another Dav type.
The error message is :
"[error] A subtree cannot specify a different DAV provider than its
parent."

This mean that a can't make that :
<Directory />
        Dav On
</Directory>
<Location /svn>
        Dav svn
</Location>

but a can make that :
<Directory /main>
        Dav On
</Directry>
<Location /svn>
        Dav svn
</Location>

Can someone help me in the configuration of apache to allow the use of
Dav capacity under the "/" directory ?

For the moment i use a web page redirect to redirect "/" to "/main".

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org
Received on Wed Oct 6 12:30:53 2004

This is an archived mail posted to the Subversion Users mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.