Where does sugarcrm (6.5) and it's fork suitecrm (7.x) set file permissions for files it creates?
I have seen config.php with the variable:
'default_permissions' => array (
'dir_mode' => 1528,
'file_mode' => 436,
'user' => '',
'group' => '',
),
but that does not seem to be the same permissions that are assigned to cache files. See files in:
cache/smarty/templates_c
which have 644
permissions rather than 660
. This means that I have to manual chmod
the files if I want to edit them.
So my question: where are file permissions set in sugarcrm/suitecrm?