Arnaud
Arnaud

Reputation: 5122

Setup SVN with Wamp

I would like to make a website with other people. For this purpose, I believe that a SVN repository with WampServer is the best solution, isn't it ?

But I have a problem for installing it. I've followed this tutorial : http://www.reloadedpc.com/other/setup-wamp-svn-subversion-windows/

Before I add lines :

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

Everything works (WAMP icon is green). But after, WAMP icon is orange. Could you help me please ? I've already tried to restart my computer.

Wamp : 2.2 SVN : 1.6.6

My log :

[Wed Jan 30 21:20:26 2013] [notice] Apache/2.2.22 (Win64) PHP/5.3.13 configured -- resuming normal operations
[Wed Jan 30 21:20:26 2013] [notice] Server built: May 13 2012 19:41:17
[Wed Jan 30 21:20:26 2013] [notice] Parent: Created child process 5084
[Wed Jan 30 21:20:26 2013] [notice] Child 5084: Child process is running
[Wed Jan 30 21:20:26 2013] [notice] Child 5084: Acquired the start mutex.
[Wed Jan 30 21:20:26 2013] [notice] Child 5084: Starting 64 worker threads.
[Wed Jan 30 21:20:26 2013] [notice] Child 5084: Starting thread to listen on port 80.
[Wed Jan 30 21:20:26 2013] [notice] Child 5084: Starting thread to listen on port 80.
[Wed Jan 30 21:21:19 2013] [notice] Parent: Received shutdown signal -- Shutting down the server.
[Wed Jan 30 21:21:19 2013] [notice] Child 5084: Exit event signaled. Child process is ending.
[Wed Jan 30 21:21:20 2013] [notice] Child 5084: Released the start mutex
[Wed Jan 30 21:21:21 2013] [notice] Child 5084: All worker threads have exited.
[Wed Jan 30 21:21:21 2013] [notice] Child 5084: Child process is exiting
[Wed Jan 30 21:21:21 2013] [notice] Parent: Child process exited successfully.

Upvotes: 0

Views: 2379

Answers (2)

Lazy Badger
Lazy Badger

Reputation: 97345

Well, recommended config (in LoadModule part) is

LoadModule dav_module         modules/mod_dav.so
LoadModule dav_svn_module     modules/mod_dav_svn.so
LoadModule authz_svn_module   modules/mod_authz_svn.so
  • dav_module, not dav=_module
  • nobody tells about dav_fs_module

Upvotes: 0

wajiw
wajiw

Reputation: 12269

If what I get you're saying is that after you add those LoadModule lines it doesn't work for you, the most likely problem is that you either have a faulty module or you're missing one. Check the error log and you should find out what is happening:

c:\wamp\logs\apache_error.log

Upvotes: 0

Related Questions