First, I got problem about permission in cache file.
Permission denied in /var/www/sugarcrm/include/utils/autoloader.php:1234
Before I ask to change permission to admin, I would like to try first.
I try to copy all file and folder in cache into cache_copy and change permission cache_copy folder to 777 drwxrwxrwx and all file in this folder to 776 drwxrwxrw-
and then rename cache into cache_1 and rename cache_copy into cache.
And I got another problem. :(
After I rename cache into cache_1
A moment, Sugar auto-create a new cache file but wrong permission with drwxrws---
Therefore, I can't access my Sugar, show blank page.
So, I rename cache(wrong permission drwxrws---) into cache_another and rename cache_1 back into cache, then refresh I can access my Sugar again.
What wrong with my sugar?
How can I fixed this problem?
I should change permission manually or not?
SugarCRM Professional, Version 7.5.2.0
Thank you,
M
Permission denied in /var/www/sugarcrm/include/utils/autoloader.php:1234
Before I ask to change permission to admin, I would like to try first.
I try to copy all file and folder in cache into cache_copy and change permission cache_copy folder to 777 drwxrwxrwx and all file in this folder to 776 drwxrwxrw-
and then rename cache into cache_1 and rename cache_copy into cache.
And I got another problem. :(
After I rename cache into cache_1
A moment, Sugar auto-create a new cache file but wrong permission with drwxrws---
Therefore, I can't access my Sugar, show blank page.
So, I rename cache(wrong permission drwxrws---) into cache_another and rename cache_1 back into cache, then refresh I can access my Sugar again.
What wrong with my sugar?
How can I fixed this problem?
I should change permission manually or not?
SugarCRM Professional, Version 7.5.2.0
Thank you,
M
https://support.sugarcrm.com/Knowledge_Base/Administration/Platform_Management/Setting_Default_File_...
To fix file permissions I generally use these commands from sugarcrm root folder. They set ownership to user and group apache, directories to 755 and files to 664
sudo chown -R apache:apache *
sudo find . -type d -exec chmod 775 {} \;
sudo find . -type f -exec chmod 664 {} \;
HTH
FrancescaS