exec() function doesn't rule svn checkout
- by bahamut100
Hi,
I'm writing some functions in php using exec() to interrogate a svn.
The commands exec("svn list ".$myurl) works.
Now, I try to get a path on a svn repository with the checkout command.
When I put the command "svn checkout http://core.wordress.org/tags/2.9.2/ last-version" directly in the console, it works.
But when I do this from a php script using exec(), like this :
exec("svn checkout ".$myurl, $dir) it doesn't work.
Have you an idea ??