This is a common problem. You're almost certainly running into permissions issues. To solve it, make sure that the apache
user has read/write access to your entire repository. To do that, chown -R apache:apache *
, chmod -R 664 *
for everything under your svn repository.
Also, see here and here if you're still stuck.
Update to answer OP's additional question in comments:
The "664" string is an octal (base 8) representation of the permissions. There are three digits here, representing permissions for the owner, group, and everyone else (sometimes called "world"), respectively, for that file or directory.
Notice that each base 8 digit can be represented with 3 bits (000 for '0' through 111 for '7'). Each bit means something:
- first bit: read permissions
- second bit: write permissions
- third bit: execute permissions
For example, 764 on a file would mean that:
- the owner (first digit) has read/write/execute (7) permission
- the group (second digit) has read/write (6) permission
- everyone else (third digit) has read (4) permission
Hope that clears things up!
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…