-1
I am using Ubuntu 16.04 and I compiled PHP 5.6.30 using the --enable-opcache flag, even though it is not necessary in this version.
In php.ini, I’ve already added lines
zend_extension=caminho_do_opcache.so
opcache.enable=1
I’ve also tried setting up in php.ini or opcache.error_log
but no message has been logged into this file.
These and other options I tested did not enable OP Cache, none of them displayed the section Zend Opcache in the phpinfo()
.
- How can I enable it?
- There is a chance that it is enabled and does not appear on
phpinfo()
? - Did I forget some step?