Hello,
I’m trying to install SuiteCRM 8.1.2 on Linux Mint but kept getting a blank page.
When I tried to install using the CLI, it said that
Upload File Size | error | Warning: Your PHP configuration should be changed to allow files of at least 6MB to be uploaded
I was able to install on Windows 10 using XAMPP with this method
However I’m still wasn’t able to install to Linux
Steps when I installed
- Move suitecrm folder to /var/www/html/
- cd /var/www/html/suitecrm then put these in
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
-
Browser localhost/suitecrm. It showed a index of /suitecrm
-
click on public folder and it becomes a blank page
-
Create suitecrm database, the page is still blank
-
Tried using cli. It gives this error
Upload File Size | error | Warning: Your PHP configuration should be changed to allow files of at least 6MB to be uploaded
- the php.ini file has upload_max_filesize at 60M
Please help