jose sanchez - 2009-05-28 16:05:33
I'm trying to do a autoUpdate application, like some CMS and I found this problem
<code>
$svn->setRepository("http://myRepository");
$svn->setAuth('me','*****');
$files_now = $svn->getFile("/trunk/use cases.doc");
print_r($files_now);
$files_now = $svn->getDirectoryFiles("/trunk/use cases.doc");
print_r($files_now);
</code>
this returns nathing
if I replace te print_r() for a var_dump()
it returns "bool(false)"
now I'm starting to review your getFile() implementation, if you find something first, pleace let me know.