Newbie & New install - Pages have no formatting

I am finally got the newest version of SuiteCRM installed on my bluehost account. When I signed into SuiteCRM the pages were not formatting correctly. Looks like css in not engaging, I’m not really sure. Many pages seem to be displaying properly (Admin, Leads, contacts, opprotunities) Home page, calendar and some others are not working. I’m new to the software. Please advise

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)

To overcome the above error you need to clear symfony cache by running next command on your SuiteCRM 8 instance root:

./bin/console cache:clear

Thank you for your help. Worked like a charm!!

You’re welcome :slight_smile: please mark answer as solution :white_check_mark: so it will help others in the future.