> -----Original Message-----
> From: Mark Phippard [mailto:markp@softlanding.com]
> Sent: Friday, May 12, 2006 1:13 PM
> To: Jones, Clyde C.
> Cc: users@subversion.tigris.org
> Subject: Re: Svn 1.3.1 and apache 2.0.58 on Windows XP
>
> "Jones, Clyde C." <clyde.jones@thermo.com> wrote on
> 05/12/2006 04:09:25
> PM:
>
> > I am trying to get subversion working with apache. I
> can't seem to
> > get the apache server started with the mod_dav_svn module. Apache
> > refuses to start if I uncomment the dav_svn module line. I haven't
> > changed anything else in the httpd.conf file. I tried adding the
> > location directive and that failed as well.
> >
> > Does anyone have this combo working? Or can you tell me
> what to do to
> > get it working?
> >
> >
> > LoadModule dav_module modules/mod_dav.so LoadModule dav_fs_module
> > modules/mod_dav_fs.so #subversion added #LoadModule dav_svn_module
> > modules/mod_dav_svn.so
>
> mod_dav_svn has other library dependencies, such as
> libdb43.dll and others. Those DLL's need to be copied to the
> modules folder.
>
> Mark
Thanks!!
That was the ticket. I am not sure what mod_dav_svn needs, but simply
copying all the *.so and *.dll files didn't work.
#This syntax fails with all dlls and so's copied
#LoadModule dav_svn_module modules/mod_dav_svn.so
#LoadModule authz_svn_module modules/mod_authz_svn.so
#this works, assuming the relative paths are correct
LoadModule dav_svn_module ../../Subversion/bin/mod_dav_svn.so
LoadModule authz_svn_module ../../Subversion/bin/mod_authz_svn.so
Now it works properly for Apache.
---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org
Received on Sat May 13 00:57:27 2006