I want to visit a url via http://xxxxx.php then my server will update automatically
I try to many way to use php execute "svn update" on my server Like:
system('./svn.sh', $retval); //svn.sh contain svn up ....
system('svn up .', $retval);
system('/usr/bin/svn up --username xxx --password --- /my_path', $retval);
PS :I don not want to use third party php extension for subversion Thanks !!!