SVN on wamp
Posted by: dexter4000 (---.hsd1.il.comcast.net)
Date: December 20, 2008 06:37AM

Hello,

I'm trying to setup svn on wamp and i followed the instructions from [tortoisesvn.net] ...

for some reason when i restart the services , the apache service doesnt start. The wamp icon stays yellow.

If i comment the lines on LoadModule dav_svn_module modules/mod_dav_svn.so
and LoadModule authz_svn_module modules/mod_authz_svn.so everythig starts to work again.


Anyone any idea ?

Options: ReplyQuote
Re: SVN on wamp
Posted by: yfastud (Moderator)
Date: December 20, 2008 02:29PM

did you enable web-dav through wamp tray icon?

Have fun,

FREE One A Day
FREE Photo
FREE Games
FREE Websites
FREE Portable GPS
FREE WAMP Guides

Options: ReplyQuote
Re: SVN on wamp
Posted by: dexter4000 (---.hsd1.il.comcast.net)
Date: December 20, 2008 05:41PM

i dont have a web_dav , i only have dav_module, dav_fs_module , dav_svn_module and authz_svn_module that were specified into the subversion for apache installation.

Options: ReplyQuote
Re: SVN on wamp
Posted by: dexter4000 (---.hsd1.il.comcast.net)
Date: December 20, 2008 05:45PM

This is what the installation instructions says :

Uncomment (remove the '#' mark) the following lines:

#LoadModule dav_fs_module modules/mod_dav_fs.so
#LoadModule dav_module modules/mod_dav.so

Add the following two lines to the end of the LoadModule section.

LoadModule dav_svn_module modules/mod_dav_svn.so
LoadModule authz_svn_module modules/mod_authz_svn.so

At the end of the config file add the following lines:

<Location /svn>
DAV svn
SVNListParentPath on
SVNParentPath D:\SVN
#SVNIndexXSLT "/svnindex.xsl"
AuthType Basic
AuthName "Subversion repositories"
AuthUserFile passwd
#AuthzSVNAccessFile svnaccessfile
Require valid-user
</Location>

This configures Apache so that all your Subversion repositories are physically located below D:\SVN. The repositories are served to the outside world from the URL: [MyServer] . Access is restricted to known users/passwords listed in the passwd file.

Point your browser to [MyServer] (where MyNewRepository is the name of the Subversion repository you created before). If all went well you should be prompted for a username and password, then you can see the contents of your repository.

I did all that was specified but it doesnt work.

Options: ReplyQuote
Re: SVN on wamp
Posted by: cwd (---.triad.res.rr.com)
Date: August 21, 2009 05:58AM

fyi - I had to restart my computer after installing SVN before i could get the second two lines to work without crashing the wamp server:

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
LoadModule authz_svn_module modules/mod_authz_svn.so

Options: ReplyQuote


Sorry, only registered users may post in this forum.