After clean and new installation there is problem view

I just complete installation of suitecrm and after login I see this!
I try to rebuild and repair but nothing change…how can I fix?

It is mostly due to file permission and ownership issue.

Set the required permissions

If you are using the terminal you can do this by running:

find . -type d -not -perm 2755 -exec chmod 2755 {} \;
find . -type f -not -perm 0644 -exec chmod 0644 {} \;
find . ! -user www-data -exec chown www-data:www-data {} \;
chmod +x bin/console

Please have in mind that:

  • The user and group name (in the above example www-data ) needs to be replaced by the actual system user and group that your webserver runs under. This varies depending on your operating system. Common web server users are as follows:

    • www-data (Ubuntu Linux/Apache)
    • apache (Linux/Apache)

I do all command but this : chmod +x bin/console

I think you’re not in correct folder.

First navigate to your SuiteCRM directory using cd command.

Then run these commands.

1 Like

ok fix with the correct path of suggest by plesk .
Not need to do:
find . ! -user www-data -exec chown www-data:www-data {} \;