Skip to content
Advertisement

Error when check out code from SVN server

I have SVN server to control source code version

I can checkout my code when I use TortoiseSVN or use command line.

Here is some information:

  1. SVN server enter image description here
  2. Checkout code by using TortoiseSVN in Windows enter image description here
  3. Chechout code by using commandline in Ubuntu (Web server)

I use this command

JavaScript

enter image description here

Then I write PHP code to update version auto (don’t use TortoiseSVN or use command line).

JavaScript

But when I run my code, it show this error:

JavaScript

I have run command line svn cleanup, but it seem doesn’t work.

Not:

JavaScript

Advertisement

Answer

I found diractory .svn in my code after checkput

When I use two command

chmod -R 777 .svn/

chown www-data:www-data .svn/

It works.

enter image description here

User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement