• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

Resolved Problem with Zend OP Cache Config

Fabhino22Elz

Basic Pleskian
Hello there,

i have a Problem with the Zend OP Cache on my Server. It says that the Cache is enabled but in the backend of my used software it is not showing no cached files or something.

I already tried to adjust opcache settings like here in this threat (Resolved - Configure Opcache for all domains) in the php.ini of my used php version for all domains and in the opache.ini.

What can i do to fix or debug this problem? Would be happy about any help.

Greetings
 

Attachments

  • Bildschirmfoto 2019-03-20 um 21.57.22.png
    Bildschirmfoto 2019-03-20 um 21.57.22.png
    229.7 KB · Views: 28
I already checked that threat and both options are activ. See screens attatched.
 

Attachments

  • Bildschirmfoto 2019-03-21 um 14.59.40.png
    Bildschirmfoto 2019-03-21 um 14.59.40.png
    55.4 KB · Views: 25
  • Bildschirmfoto 2019-03-21 um 15.00.20.png
    Bildschirmfoto 2019-03-21 um 15.00.20.png
    8 KB · Views: 16
Your first screenshot exactly shows the problem: In your PHP configuration, the function opcache_get_status is DISABLED. So any script (like your website) that is trying to get the status of the opcache will fail, as PHP does not permit access to that function.

So, remove "opcache_get_status" from the disabled function list and then try again.

Also, you can create a PHP file on your website with the following code in it:
Code:
<?php
     phpinfo();
?>
And then load that PHP script in your browser. You will see the output of phpinfo(), search for "opcache" to verify that opcache is enabled.
 
Back
Top