Thursday, February 28, 2008

AuthzSVNAccessFile svnaccessfile.txt

#Subversion Configuration Handler

#Repository configuration
DAV svn
SVNListParentPath on
SVNParentPath D:\SVN

AuthName "Subversion repositories"
AuthzSVNAccessFile svnaccessfile.txt

# NT Domain Logins.
AuthType SSPI
SSPIAuth On
SSPIAuthoritative On
SSPIDomain
SSPIOfferBasic On

#HTpasswd logins.
Require valid-user




inside svnaccessfile.txt

[groups]
developers = domain\user1,domain\user2

#to allow everyone read access
[/] * = r
#allow all developers complete access
@developers = rw

#allow developers to access their projects
[Project1:/]
@developers = rw

Wednesday, February 27, 2008

No installed service named "Apache2"

When Apache launches, it gives error: No installed service named "Apache2"

For some reason Apache doesn't always install the service. What you need to do is go into command prompt (start > run > type in cmd ) then type in: c:\apache2\bin\apache -k install

Make sure change that path to the location you installed Apache to. That should put the service you need back in.

By the way, I got this info from this site:
http://www.ricocheting.com/server/faq.html