Hi All,
I am struggling with (permanently) setting the permissions on an ibay so that apache has write permissions on that ibay.
I installed a PHP app (elgg) in an ibay to serve the site for a subdomain. I go all the PHP settings configured to allow the file upload for the site:
 db accounts show eastern
eastern=ibay
    AllowOverride=All
    CgiBin=enabled
    FollowSymLinks=enabled
    Gid=5059
    Group=shared
    Name=Eastern District Website
    PHPBaseDir=/home/e-smith/files/ibays/eastern/html:/home/e-smith/files/ibays/eastern/files:/tmp
    PasswordSet=no
    PublicAccess=global
    Uid=5059
    UserAccess=wr-admin-rd-group
 
However with these settings, PHP has no write permissions and I get PHP permission denied errors in /var/log/messages.
I can fix it with chown -R www:www /home/e-smith/files/ibays/eastern/* 
But after a reconfiguration, the permissions on the ibay revert to the configured ones on the ibay.
So what is the correct user/group configuration for an ibay through server-manager or through some "db accounts setprop" for an ibay so that a PHP app can have write permissions?