Ok so I am writing a PHP script that will gather some information into a file and the push it up via SVN. I am running into a problem with pushing it up via SVN.
shell_exec("svn commit -m $message store-webapp-test-selenium-$storeCode --password $svnPassword");
I have even tried it like this
shell_exec("svn commit -m $message store-webapp-test-selenium-$storeCode --username $svnUsername --password $svnPassword");
Any thoughts