First of all, thanks for pointing me in the right direction.
After adding the following to apache's httpd.conf file...
<Location /svn>
DAV svn
SVNPath "C:/temp/myrepos"
</Location>
...I can now see the contents of my repository by pointing my browser to
http://localhost/svn/
Now I am just having a problem accessing the repository via the url rather
than the file
This works fine
C:\temp\local>svn checkout file:///c://temp/myrepos
A myrepos/dir1
A myrepos/dir1/file1.txt
A myrepos/hello.txt
Checked out revision 1.
However this does not
C:\temp\local>svn checkout http://localhost/svn/
svn: RA layer request failed
svn: The path was not part of a repository
svn: PROPFIND of /: 405 Method Not Allowed
Any thoughts on what I should be looking for here?
"Arild Fines" <arild.fines@broadpark.no>
05/06/2003 12:42 PM
Please respond to arild.fines
To: <Sean_Shubin@mapinfo.com>, <dev@subversion.tigris.org>
cc:
Subject: RE: getting started with windows 2000
-----Original Message-----
From: Sean_Shubin@mapinfo.com [mailto:Sean_Shubin@mapinfo.com]
Sent: 6. mai 2003 21:17
To: dev@subversion.tigris.org
Subject: getting started with windows 2000
I think I must be missing a step here, anyone care to help out?
Here is what I have done so far:
* ran svn-0.21.0-setup.exe
* copied libdb40.lib into the Apache2\bin directory
* copied mod_dav_svn.so to the Apache2\modules directory
* made sure the following entries are in the Apache2\conf\httpd.conf file
LoadModule dav_module modules/mod_dav.so
LoadModule dav_fs_module modules/mod_dav_fs.so
LoadModule dav_svn_module modules/mod_dav_svn.so
* ran Apache2\bin\Apache -k uninstall
* rebooted windows
* ran Apache2\bin\Apache -k install
* ran Apache2\bin\Apache -k start
* ran svnadmin create "C:\Program Files\Apache
Group\Apache2\htdocs\myrepos"
* made sure I could access http://localhost/myrepos/ via internet explorer
* created a local directory c:\temp\mystuff, and added various files to it
Here is the problem I am getting:
C:\temp>svn import http://localhost/myrepos/ mystuff myproj -m ""
svn: RA layer request failed
svn: OPTIONS request failed on '/myrepos'
svn: OPTIONS of '/myrepos': 301 Moved Permanentl
Read the Basic Apache Configuration section here: http://svnbook.red-bean.com/html-chunk/ch05s04.html#svn-ch-5-sect-4.1
--
Arild
Received on Wed May 7 22:17:23 2003