Zend OPcache not showing in global settings
-
My host offers this code sample to be inserted in php.ini to enable OPcache, so I asked them to do it to ensure that it is done the best way. I see that the cache file is loading a lot of content which seem a good sign of installation. However the option is not available in W3C under general settings.
Here is the code added in php.ini
zend_extension=opcache.so; opcache.enable=1; opcache.memory_consumption=32; opcache.interned_strings_buffer=8; opcache.max_accelerated_files=3000; opcache.revalidate_freq=180; opcache.fast_shutdown=0; opcache.enable_cli=0; opcache.revalidate_path=0; opcache.validate_timestamps=1; opcache.max_file_size=0; opcache.file_cache=/ xxxxxxxxxxxxxxx/.opcache; opcache.file_cache_only=1;
you can have an overlook of the setup @ https://imperativewealth.com/phpinfo.php displaying this among other related information :
This program makes use of the Zend Scripting Language Engine:
Zend Engine v3.3.14, Copyright (c) 1998-2018 Zend Technologies with Zend OPcache v7.3.14, Copyright (c) 1999-2018, by Zend TechnologiesCan you say me more about how to understand and solve this situation pls ?
- The topic ‘Zend OPcache not showing in global settings’ is closed to new replies.