I'm using Ubuntu 16.04 and compiled PHP 5.6.30 using the --enable-opcache flag, even though it's not needed in this release.
In php.ini, I've already added the rows
zend_extension=caminho_do_opcache.so
opcache.enable=1
I have also tried to configure opcache.error_log
in php.ini, but no messages have been logged in this file.
These and other options I tested did not enable the OP Cache, none of them displayed the Zend OPCache section in phpinfo()
.
- How can I enable it?
- Is there a chance that it is enabled and does not appear in
phpinfo()
? - Did I forget some step?