[Vtigercrm-developers] Error creating new users and permissions recalculate
Alan Lord
alanslists at gmail.com
Fri Nov 2 02:03:27 PDT 2012
On 01/11/12 12:44, Rodrigo Souza wrote:
>
> I believe it can be the file permissions on the folder User_Privileges,
> but as is already checked and 777.
I don't have an answer to your specific problem but, making *anything*
777 is a *really* bad idea from a security perspective.
Check that the directory is owned by the apache process (usually
www-data in Ubuntu) and is 755.
# sudo chown -R www-data:www-data User_Privileges
will set the correct ownership to the directory and its contents.
Then make sure that the files inside that directory are 644 and again
owned by www-data.
cd User_Privileges
# sudo chmod 644 *
More information about the vtigercrm-developers
mailing list