I want to enable PHP OPcode caching for Drupal 8 installation. I have the following in Xampp php.ini. However, I still get opcode not enabled. What am I doing wrong??
opcache.enable=1
engine = On
zend_extension=php_opcache.dll
opcache.memory_consumption=128
opcache.interned_strings_buffer=8
opcache.max_accelerated_files=4000
opcache.revalidate_freq=60
opcache.fast_shutdown=1
opcache.enable_cli=1
extension_dir
value in yourphp.ini
? and where doesphp_opcache.dll
reside? – Mufflerzend_extension=php_opcache.dll
line in the error logs? If not, it is likely that the extension was loaded correctly. – Ferrell