UnkwnTech
UnkwnTech

Reputation: 90841

PHP Source Control Server

I there a PHP based source control 'server' that is compatible with SVN clients?
I'd like to host my SVN on my hosting servers, however the current host will not allow me to start any process or install any software

Upvotes: 3

Views: 4966

Answers (5)

navitronic
navitronic

Reputation: 563

If you want a hosted svn repository and you don't mind using and trusting a 3rd party, try beanstalk, they have a free account and a number of fairly reasonable paid options, considering the management overhead you won't need with them.

Upvotes: 0

Will Bickford
Will Bickford

Reputation: 5386

The only PHP-based SVN project I'm aware of is this package that allows PHP to utilize some of the SVN bindings: http://pecl.php.net/package/svn.

As the other answers here have indicated, I don't think you are going to find what you want. A PHP-based SVN server does not appear to exist.

I would suggest finding a different hosting provider for your repositories.

Upvotes: 0

Stephane Grenier
Stephane Grenier

Reputation: 15927

Not that I know of.

You can look at services like CVSDude.org which provide great SVN hosting that's pretty affordable. They basically specialize in both CVS, and now SVN hosting.

Upvotes: 0

Patrick Desjardins
Patrick Desjardins

Reputation: 140753

You can have a PHP front end but you will still need to have the SVN server running somewhere.

Upvotes: 1

Related Questions