Language ,Style ,Dashlets are not loading after installation

Tried installing suitecrm version 8.10 on ec2 instance multiple times through and cli(also tried version 7 before that).All installation has similiar issue not able to load language and style after installation .Done repairby directly hitting the url also multiple approaches .Updated the permission as well but nothing worked so far stuck in a loop.Basically cache is not getting updated properly .Someone faced this issue before?

It could be many things. If you share some more information about your system, we might be able to help.

Essential EC2 Requirements Check

  • PHP Extensions: Ensure you have installed cli, curl, common, intl, gd, mbstring, mysqli, pdo_mysql, openssl, soap, xml, and zip.

  • File Permissions: Run ownership and permission commands matching your web server user (www-data on Ubuntu/Apache):

sudo chown -R www-data:www-data /var/www/html/suitecrm
sudo chmod -R 2755 /var/www/html/suitecrm

Use code with caution.

  • Clear Symfony Cache: If running CLI installs or updates, clear and rebuild the cache manually if the installer hangs:
php bin/console cache:clear

Use code with caution.

Hello John,

can you try the UI installer?

It has a nice pre-check page and it’ll already tell you quite a few details that are wrong about your server setup that you can fix right away.

If you need to stick to the CLI, make sure you read carefully through the webserver setup guide:

Tried installation on ubuntu 26.04 EC2 php version 8.4

I tried both initially i tried CLI then with UI but its still the same error.

What do you have as default_permissions in public/legacy/config.php?

P.S. - Ubuntu 26 with PHP 8.4 is exactly the combo that led me to make the PR I linked above. In short (and to my amazement) Ubuntu 26 won’t give the same mkdir/chmod rights to the www-data user when it’s doing command-line chmod, compared to when it’s running inside PHP.