|
Re: Portable Windriver
you need to install apache (at least that is how i could only get it to work)
just google apache, download and install 2.2
(fromhttp://www.codeproject.com/KB/winsdk/SubversionApache.aspx)
When the installation is finished, go to the bin directory within the Subversion installation, find two files with extension *.so, and put them into the (Apache)/modules directory. The files are mod_authz_svn.so and mod_dav_svn.so.
Go to the conf sub-directory within the Apache installation directory and open the httpd.conf file in any text editor.
Add the following lines:
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
Now assuming your reposotory is at C:\svns\repos1 and you want to redirect localhost/svn to it,
add this to the httpd.conf:
<Location /svn>
DAV svn
SVNListParentPath on
SVNParentPath C:/svns
</Location>
If you get an error, tell me
__________________
Bubble Wrap: programmers rewards
Watchdog.Kill();
printf("Watchdog is Dead, Celebrate!");
How to make a self aware robot: while (∞) cout<<(sqrt(-∞)/-0);
Previously FRC 451 (The Cat Attack)
Now part of the class of 2016 at WPI & helping on WPILib
|