Edit /etc/group so that apache belongs to group boinc, i.e. the line:
boinc:x:566:becomes:
boinc:x:566:apache(Apache will need to be stopped/restarted for this to take effect.)
When you create a BOINC project using make_project, the critical directories are owned by boincadm and have the set-GID bit set; this means that any directories or files created by apache in those directories will have group boinc (not group apache). Also, the BOINC software makes all directories group read/write. Thus, both apache and boinc will have read/write access to all directories and files, but other users will have no access.
If you're running several projects on the same server and want to isolate them from each other, you can create a different user and group for each project, and add apache to all of the groups.
The following solutions should work, but may introduce security vulnerabilities:
apache:x:48:becomes:
apache:x:48:boincadmAdd these two lines to the beginning of the apache start script (called apachectl, usually in /usr/sbin on linux):
umask 2 export umaskApache will need to be stopped/restarted for this to take effect. Now any file apache creates should have group writable permissions (thanks to the umask) and user boincadm, who now belongs to group apache, will be able to update/delete these files.