• Hi, Pleskians! We are running a UX testing of our upcoming product intended for server management and monitoring.
    We would like to invite you to have a call with us and have some fun checking our prototype. The agenda is pretty simple - we bring new design and some scenarios that you need to walk through and succeed. We will be watching and taking insights for further development of the design.
    If you would like to participate, please use this link to book a meeting. We will sent the link to the clickable prototype at the meeting.
  • (Plesk for Windows):
    MySQL Connector/ODBC 3.51, 5.1, and 5.3 are no longer shipped with Plesk because they have reached end of life. MariaDB Connector/ODBC 64-bit 3.2.4 is now used instead.
  • Our UX team believes in the in the power of direct feedback and would like to invite you to participate in interviews, tests, and surveys.
    To stay in the loop and never miss an opportunity to share your thoughts, please subscribe to our UX research program. If you were previously part of the Plesk UX research program, please re-subscribe to continue receiving our invitations.
  • The Horde webmail has been deprecated. Its complete removal is scheduled for April 2025. For details and recommended actions, see the Feature and Deprecation Plan.

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