Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Are there any SVN servers written in PHP? [closed]

Tags:

php

svn

Given that SVN repos can be accessed over HTTP, would it be possible to code an SVN server in PHP?

Has anyone done this?

like image 459
Nathan Osman Avatar asked Apr 09 '10 00:04

Nathan Osman


2 Answers

See the SVN Pecl extension:

  • http://php.net/manual/en/book.svn.php

This is not an SVN server written in PHP though, but a client API that interfaces with a server.

Like everyone else, I too find it rather ... odd to want to write a PHP SVN Server, which probably takes quite an effort and time, when all you have to do is just to switch hosts. As an alternative, use an open SVN hosting service and checkout from your hosting service with Phing or something when needed.

like image 130
Gordon Avatar answered Sep 20 '22 01:09

Gordon


There are no SVN servers written in PHP.

like image 27
Andrey Avatar answered Sep 20 '22 01:09

Andrey