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

Re: How to install mod_dav_svn on Windows?

From: Robo <robo555_at_gmx.net>
Date: 2002-12-01 11:59:25 CET

Got the problem solved now, had to change this line:

LoadModule dav_module modules/mod_dav_svn.so

to this:

LoadModule dav_svn_module modules/mod_dav_svn.so

Which would make sense...

But now there's another problem, svn does not like it when I have the
Location block like:

<Location "/svn/ath">
  DAV svn
  SVNPath "E:/svn/ath"

  AuthType Basic
  AuthName "Subversion repository"
  AuthUserFile "E:/htpasswd/password"

  Require valid-user
</Location>

Where ath is the repository I want to have access over the network. If I go
to http://localhost:8080/svn/ath I get a HTTP 500 Internal server error, if
I go to http://localhost:8080/svn/ath/ I get a message saying "Expected
version '1' of repository; found no version at all; is `E:/svn/ath' a valid
repository path?"

The only way I've found so far to make it work is:

<Location "/svn">
  DAV svn
  SVNPath "E:/svn"

  AuthType Basic
  AuthName "Subversion repository"
  AuthUserFile "E:/htpasswd/password"

  Require valid-user
</Location>

That allows me to access the ath repository, but of course that also exposes
my other repositories, which I don't want.

Robo

----- Original Message -----
From: "Branko Čibej" <brane@xbc.nu>
To: "Robo" <robo555@gmx.net>
Cc: <dev@subversion.tigris.org>
Sent: Sunday, December 01, 2002 3:13 PM
Subject: Re: How to install mod_dav_svn on Windows?

> Robo wrote:
>
> >mod_dav.svn.so was the last item in the LoadModule list, so it would have
> >been after mod_dav.so
> >
> >Gave a warning about module already loaded, then crash on starting when
the
> ><Location> tag was added.
> >
> >
> The only time I saw something similar was when I had two LoadModule
> limes for mod_dav_svn.so or mod_dav.so.
>
> --
> Brane Čibej <brane_at_xbc.nu> http://www.xbc.nu/brane/
>
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
> For additional commands, e-mail: dev-help@subversion.tigris.org
>

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Sun Dec 1 12:00:24 2002

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

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