Hi @bkm,
Thank you for trying out SuiteCRM 8.
Sorry for the delay in replying.
We’ve seen this error happening when there is some misconfiguration in mod_rewrite
.
Could you double check if you have mod_rewrite
active?
- For more info you can check : SuiteCRM Install guide - 1.3 Configuring URL re-writes
Also please check if your vhost
configuration is set to allow overrides. Adding an example next:
<VirtualHost *:80>
...
DocumentRoot /<path-to-suite>/public
<Directory /<path-to-suite>/public>
AllowOverride All
Order Allow,Deny
Allow from All
</Directory>
I think the issue you are having is the same as the following, you can find more information here:
Hope this helps