#2827 - Incorrect installation
Hello SuiteCRM 7.7.9 (Windows, Appache, MsSQL 2008) SugarPrint 1.39
Have several problems: 1) After installation of the module it still hanging on in "load module" part of the Module Loader, not in "Installed modules" (installation seems to be executed correctly) 2) When signing in with English language pack buttons appear empty, but with Russian language pack everything ok 3) During Repair&Rebuild Suite finds mismatch with database, script which offers Suite doesn't fix the differences
7 years ago
7 years ago
7 years ago
7 years ago
Hi Dmitry, in order to let us investigate the issues, can you send me by email (alberto@sugar-project.com) credentials of a temporary account of your CRM? Best regards, Alberto
7 years ago
Hi Alberto, Thanks for quick response. Unfortunately I can't - we have local self-hosted instance and I am not allowed to provide outside access. Do we have other options?
7 years ago
Hi Dmitry, as regards the empy buttons, they depend on file system permission issues. The cache directory permission have to be 775 for the folders and 664 for the files.
Hereafter are the shell commands (you need to be in the CRM root) to set the correct permissions (in a Linux environment). find cache -type d -exec chmod 775 {} \; find custom -type d -exec chmod 775 {} \; find modules -type d -exec chmod 775 {} \; find data -type d -exec chmod 775 {} \;
In addition, these are the settings that usually work in the config.php file (the values replace the default ones). 'default_permissions' =>
array ( 'dir_mode' => 493, 'file_mode' => 420, 'user' => '', 'group' => '', ),
Best regards, Alberto