I tried to check status of a file in svn working copy by issuing following commmand:
svn status /home/guna/server/local/svndump/site/head.php
Which outputs results like,
M /home/guna/server/local/svndump/site/head.php
But when i tried through the same command in php i got empty array as result,
<?php
exec('svn status /home/guna/server/local/svndump/site/head.php',$re);
echo "<pre>";print_r($re);echo '</pre>';
?>
What is the issue here? can somebody help me. Answers appreciated!