I have a subversion repository under /var/svn/
I am trying to use subversion to get details of the latest revision, I have tried using shell_exec to run svn info on the external address, but I couldn’t get any input from it. Is there any way I can read the information from the repository itself?
Solved:
Decided to go with the SVN PECL modudle see here
PHP has native support for SVN
(PECL though and not available on Windows)
You can also use the Arbit‘s VCS Abstraction Layer
(supports SVN, CVS, GIT, Mercurial and Archive)