Index.php in public folder showing blank

Hi @Guyvdb,

Welcome to the community! :wave: and thanks for trying out SuiteCRM 8.

We’ve seen this error happening when there is some misconfiguration in mod_rewrite.

Could you double check if you have mod_rewrite active?

Also please check if your vhost configuration is set to allow overrides. Adding an example next:

<VirtualHost *:80>
    ServerName domain.tld
    ServerAlias www.domain.tld

    DocumentRoot /var/www/project/public
    <Directory /var/www/project/public>
        AllowOverride All
        Order Allow,Deny
        Allow from All
    </Directory>

I think the issue you are having is the same as the following, you could find more information here:

Hope this helps