I implemented a subversion server as apache module on our server.
Next i created a repository from a client computer and imported a root
filesystem into it (trunk,branches,tags).
Then i tried to fill this repository with data by importing a project.
All directories of my project and their contents are successfully
imported; single files in the root of my project not.
Inspecting the log-files showed me that for a single file the response
to a PROPFIND from the server was 500. In another environment (at my
home office) the response to the same action is 404, as i exspected.
When i create a project which is completely under a directory tree i can
import it completely successful and do a checkout. But commiting a
change on a single file doesn't work either.
What can I do?
Server:
Windows Server 2003 Enterprise Edition Service Pack 1
Apache 2.0.59 running as member of group SYSTEM
apr 0.9.7
DAV 2
SVN 1.3.2
http.conf:
LoadModule dav_module modules/mod_dav.so
LoadModule dav_fs_module modules/mod_dav_fs.so
LoadModule dav_svn_module "C:/Programme/Subversion/bin/mod_dav_svn.so"
LoadModule authz_svn_module
"C:/Programme/Subversion/bin/mod_authz_svn.so"
# SubVersion server
<VirtualHost *:80>
ServerName svn.intern.mkc-gmbh.de
ServerAlias svn
CustomLog logs/access_svn.log combined
<Location />
DAV svn
SVNParentPath "e:\svn"
SVNListParentPath on
AuthType Basic
AuthName "Subversion repositories"
AuthUserFile passwd
AuthzSVNAccessFile "c:/Programme/Subversion/svnapache.conf"
</Location>
</VirtualHost>
Client:
Windows XP professional Service Pack 2
TortoiseSVN 1.3.5
---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org
Received on Wed Sep 6 22:35:08 2006