Error "PHP Opcache is not properly configured"

Hello, we using Nextcloud in our company, I’am trying to fix some errors whose this one :

The PHP Opcache is not properly configured. For better performance we recommend :arrow_upper_right: to use following settings in the php.ini:
opcache.enable=On
opcache.enable_cli=1
opcache.interned_strings_buffer=8
opcache.max_accelerated_files=10000
opcache.memory_consumption=128
opcache.save_comments=1
opcache.revalidate_freq=1

On my php.ini file no mention of any of these terms.
Should I add these lines on my file ?

Thank you for your help :slight_smile:

PHP Version : 5.6.32
Nexctloud V13

Actually PHP needs to load the relevant extension, so if there is the following entry commented, you would need to uncomment it (by removing the leading ; ):
zend_extension=opcache.so

With the extension enabled it should be possible to simply add those lines.

I’m using PHP 7.2 and my php.ini also contains the block “[opcache]”. So I’m not sure if PHP 5.6 supports opcache already.