0

I want to checkout some files from svn to my locale folder using php. For that I write this code.

    $checkout = "svn --username myuname--password mypass checkout svn://192.16.20.125/projname/trunk/content/Poems/files.swf  D:/PHP_Projects/MyTempRelease/content/Poems/files.swf";    
    exec($checkout);

But its not checkout file to my locale. Not return any error.

2 Answers 2

2

I'd try this with a client - Tortoise or something else. Just to see if it works.

I'd also wonder if the lack of a space between "myuname" and "--password" is killing you.

Sign up to request clarification or add additional context in comments.

Comments

0

I think it's because you are missing a space between your username and --password.

Try running the command directly (on the command line) and verify that it is working.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.