Installation help - SuiteCRM 7.9.4 on Window 10

Hi everyone,

I am a newbie and I started installing SuiteCRM 7.9.4 on Window 10 followed the instruction in these two videos:

  1. https://youtu.be/gQfXFD2fjNY
  2. https://youtu.be/cgBSRjpYghs

Things went right until I got these two issues:

  1. Not found: InboundEmail and Campaigns (Email) require the IMAP libraries. Neither will be functional.
  2. Warning: Your PHP configuration should be changed to allow files of at least 6MB to be uploaded.

Please help me because I do not know what is wrong with it and have no idea how to fix it.
Thanks a lot.

On the first video you link, in the comments, you’ll find answers to your questions.

1 Like

I had a similar problem on Ubuntu 16. I didn’t realize php-fpm runs as a seperate service and needs a reload after php.ini is edited. I thought just restarting the web server would work. In my case I edited /etc/php/7.0/fpm/php.ini and restarted nginx and was still getting the error.

service php7.0-fpm reload

Troubleshooting:

You can confirm that the running php-fpm’s config is different than you expect by adding a little code to dump the config.
Add this to info.php in the SuiteCRM web root:

<?php phpinfo(); ?>

and it will tell you what the values of these key settings actually are:

post_max_size = 200M
upload_max_filesize = 100M
memory_limit = 128M

Just a comment on your settings - that memory_limit should really be lifted, preferably to 512MB, but at least to 256 MB.