I use Subversion-1.8.14 for apache-2.4.10 for 64-bit Windows 2008 (Almost 99% is a supported version for both applications) I copied the following two files from Subversion / bin to Apache / modules
- mod_dav_svn.so
- mod_authz_svn.so
I edited Httpd.conf to add a Subversion link to the end of the boot modules section at the top and copied the following lines:
LoadModule authz_svn modules/mod_authz_svn.so
LoadModule dav_svn modules/mod_dav_svn.so
according to the document: Xstore_POS_and_Xstore_Office_-_Build_Server_Setup
<Location /svn>
DAV svn
SVNPath "C:/Program Files (x86)/Subversion/bin/xyzxstorerepo"
AuthType Basic
AuthName "Subversion Repository"
AuthUserFile "htdocs/.htpasswd"
AuthzSVNAccessFile "C:/Program Files (x86)/Subversion/bin/xyzxstorerepo/conf/svn-acl-conf"
Require valid-user
</Location>
Error read
The Apache service reported the following error:
→> httpd.exe: syntax error on line 111 of the file C: / Program (x86) /apache-2.4.10/conf/httpd.conf: unable to load modules / mod _authz_svn.so on the server: specified the procedure could not be found. "
How can I fix this.