If your EspoCRM is not loading after upgrade don't worry.
1. Try to run rebuild from CLI:
php rebuild.php
2. It can be caused by file permissions being changed (for linux servers).
Check permissions of files:
/index.php
/api/v1/index.php
They must be 644. If any of those file has permission 664 you need to change it to 644. Use your hosting's control panel or chmod command.
chmod 644 /path/to/file
More information about file permissions configuration: https://github.com/espocrm/documenta...-based-systems.
3. Check errors in logs: https://docs.espocrm.com/administrat...ng/#check-logs.
1. Try to run rebuild from CLI:
php rebuild.php
2. It can be caused by file permissions being changed (for linux servers).
Check permissions of files:
/index.php
/api/v1/index.php
They must be 644. If any of those file has permission 664 you need to change it to 644. Use your hosting's control panel or chmod command.
chmod 644 /path/to/file
More information about file permissions configuration: https://github.com/espocrm/documenta...-based-systems.
3. Check errors in logs: https://docs.espocrm.com/administrat...ng/#check-logs.
Comment