Zend Opcache option disabled
-
Hi! I´m trying to setup the Zend Opcache but the option is disabled in the select field:
https://prnt.sc/Ud8hhgoM6Rm2
I have installed version 2.7.1 and WordPress 6.5.2
This is a shared server hosting. The php.ini is like this:
zend_extension=opcache.so; opcache.enable=1; opcache.memory_consumption=128; opcache.interned_strings_buffer=8; opcache.max_accelerated_files=4000; opcache.revalidate_freq=60; opcache.enable_cli=1; opcache.file_cache=/homepages/5/d251286445/htdocs/sanvalina/.opcache; opcache.file_cache_only=1;So the phpinfo() returns:
https://prnt.sc/EdVD_Vl857Bj
And if I check this code:
<?php function is_opcache_enable() { $enabled = false; try { $enabled = @ini_get('opcache.enable') && function_exists('opcache_reset'); } catch (Throwable $e) { $enabled = false; } return var_dump($enabled); } is_opcache_enable();The result is: bool(true)
What else shoud I check?
Thank you!
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
The topic ‘Zend Opcache option disabled’ is closed to new replies.
