Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>This is a common problem. You're almost certainly running into permissions issues. To solve it, make sure that the <code>apache</code> user has read/write access to your entire repository. To do that, <code>chown -R apache:apache *</code>, <code>chmod -R 664 *</code> for everything under your svn repository.</p> <p>Also, see <a href="http://svn.haxx.se/users/archive-2009-02/0003.shtml" rel="noreferrer"><strong>here</strong></a> and <a href="http://www.svnforum.org/2017/viewtopic.php?p=19591&amp;sid=8a33d98035dfd744831017e51c23a054" rel="noreferrer"><strong>here</strong></a> if you're still stuck.</p> <hr/> <h3><strong>Update to answer OP's additional question in comments:</strong></h3> <p>The "664" string is an octal (base 8) representation of the permissions. There are three digits here, representing permissions for the <em>owner</em>, <em>group</em>, and <em>everyone else</em> (sometimes called "world"), respectively, for that file or directory.</p> <p>Notice that each base 8 digit can be represented with 3 bits (000 for '0' through 111 for '7'). Each bit means something:</p> <ul> <li>first bit: read permissions</li> <li>second bit: write permissions</li> <li>third bit: execute permissions</li> </ul> <p>For example, 764 on a file would mean that:</p> <ul> <li>the owner (first digit) has read/write/execute (7) permission</li> <li>the group (second digit) has read/write (6) permission</li> <li>everyone else (third digit) has read (4) permission</li> </ul> <p>Hope that clears things up!</p>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload