After installation layout aint working

Hi!

I have plesk server and every time i try to install Suite CRM I got this problem:

Layout aint work! What can i do?

Hello
It seems file permission on your installed directory. You just need to correct file permission and ownership.
Here is documentation

1 Like

Directories and/or files has not the right permissions, those has to be set for directories: chmod 755 and for files chmod 644.
try this:
Open a terminal as root and type:
find . -type d -exec chmod 755 {} ;
find . -type f -exec chmod 644 {} ;

In the case you can’t open a terminal need to change permissions manually.
Hope it helps you.