Hello, I am new to subversion,
I am trying to set up a subversion server and a client but at the moment I
cannot work it out.
I have done the following step:
On the Win2000 server:
1) Installed Apache 2.0.40 (apache_2.0.40-win32-x86-no_ssl.msi)
2) Installed subversion (svn-0.14.2-r3033-setup.exe)
3) In the Apache httpd.conf dove the following:
a) uncommented line:
LoadModule dav_module module/mod_dav.so
b) uncommented line:
LoadModule dav_fs_module module/mod_dav_fs.so
c) added line:
LoadModule dav_svn_module /programmi/subversion/mod_dav_svn.so
d) added lines:
Alias /svnrepo "C:/svnrepo"
<Location /repos>
DAV svn
SVNParentPath "c:/svnrepo"
Order allow,deny
Allow from all
</Location>
<Directory "C:/svnrepo">
Options Indexes FollowSymLinks MultiViews IncludesNoExec
AddOutputFilter Includes html
AllowOverride None
Order allow,deny
Allow from all
</Directory>
4) Started the Apache service
5) issued the command "svnadmin create repo1" from the svnrepo directory
The repository has been created with success !!!
On a Win98 client:
1) Installed subversion (from the same setup file)
2) I can access the server from the client by pointing IE at the address:
http://151.89.50.75/svnrepo/
that is the address of the server on my intranet.
3) When I issue the command:
svn import http://151.89.50.75/repo1 prova1 prova1 -m 'bruno'
I get the following:
svn: RA layer request failed
svn: OPTIONS request failed on /repo1
svn: The OPTIONS request returned invalid XML in the response: XML parse
error a
t line 1: no element found. (/repo1)
Can someone help me to understand what is wrong?
Did I miss anything in the setup?
Thank you
Bruno
---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Fri Sep 13 14:55:21 2002