|
Couldn't find a solution, I changed umask everywhere, tried to set up ACL recursively with default settings etc. still when I installed a plugin with WordPress it overrode everything.
So I searched and found a workaround:
define('FS_CHMOD_FILE', 0770);
define('FS_CHMOD_DIR', 0770);
You'll have to add this to the wp-config.php and this will chmod the files upon creation.
|