How to speed up SuiterCRM 8?

Hi @Cadej @pstevens,

Thanks for the feedback.

@pstevens quite liked the video, thanks for the feedback.

Regarding performance. We already know some improvements we want to make.

Meanwhile, there are some php/server configurations that may help.

For a deeper understanding of what Iā€™m going to say next, you can have a read on the following:

From the above there a few things you could try, maybe the one with most impact is:

Enabling opcache

Setup and configure opcache on php.ini

The following example is based on the above Symfony documentation:

[opcache]
; Determines if Zend OPCache is enabled
zend_extension=opcache.so
opcache.enable=1

; The OPcache shared memory storage size.
opcache.memory_consumption=256

; The maximum number of keys (scripts) in the OPcache hash table.
; Only numbers between 200 and 100000 are allowed.
opcache.max_accelerated_files=20000

; When disabled, you must reset the OPcache manually or restart the
; webserver for changes to the filesystem to take effect.
opcache.validate_timestamps=0

3 Likes