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

Re: PROPFIND request failed

From: Bob Proulx <bob_at_proulx.com>
Date: 2005-05-06 05:52:09 CEST

scott b wrote:
> <Location /repos>
> DAV svn
> SVNPath /usr/local/svn
> </Location>

That would work with a URL like this:

  http://localhost:9099/svn

But you are using:

  http://localhost:9099/svn/repos

So you probably want to change your configuration to be this:

  <Location /repos>
   DAV svn
   SVNParentPath /usr/local/svn
  </Location>

That will allow you to have more than one repository below that
location.

> [root_at_boreas logs]# svn checkout http://localhost:9099//svn/repos project

I don't think the "//" is causing problems but you really only wanted
one "/" there. Instead of checkout try using 'list' to test the
repository. It won't really do anything and is safer to run.
Normally you would not be running as root unless you were using svn as
root to help manage your system files.

Bob

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org
Received on Fri May 6 05:54:03 2005

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.