• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion
  • Inviting everyone to the UX test of a new security feature in the WP Toolkit
    For WordPress site owners, threats posed by hackers are ever-present. Because of this, we are developing a new security feature for the WP Toolkit. If the topic of WordPress website security is relevant to you, we would be grateful if you could share your experience and help us test the usability of this feature. We invite you to join us for a 1-hour online session via Google Meet. Select a convenient meeting time with our friendly UX staff here.

Resolved PHP FPM 8.2.17 is not accurately checking cached files for changes

andreios

Regular Pleskian
Username:

TITLE


PHP FPM 8.2.17 is not accurately checking cached files for changes

PRODUCT, VERSION, OPERATING SYSTEM, ARCHITECTURE

Plesk Obsidian, 18.0.59 Update #2, Ubuntu 22.04.4 LTS Linux 5.15.0-97-generic #107 x86_64

PROBLEM DESCRIPTION

PHP 8.2.17 is not checking files of changes during runtime. Only after a restart which resets the opcache.

STEPS TO REPRODUCE

Activate PHP FPM version 8.2.17 and use it an your test hosting as nginx aplication not using proxy. It should make no difference but at least I used nginx.
Create a file in / called systeminfo.php with these content:

Code:
<?php
function getSystemValue() {
    return php_uname();
}
echo getSystemValue();
?>
Go to your example website to the url example.com/systeminfo.php and see that i prints a line with information about your host like host name and versions.
Now change file content of the file to this:
Code:
<?php
function getSystemValue() {
    return php_uname(n);
}
echo getHostname();
?>
Save it, and refresh the the site with example.com/systeminfo.php

ACTUAL RESULT

You will see the same information as before. The file is cached by PHP.

EXPECTED RESULT

Now restart the corresponding PHP FPM Service on your host, and you will see, when you take another look at /systeminfo.php it only shows the host name. As expected.

ANY ADDITIONAL INFORMATION

I have downgraded everything on my Server to PHP 8.1.27, where this issue is not present.

YOUR EXPECTATIONS FROM PLESK SERVICE TEAM

Confirm bug
 
This does not seem to be a Plesk issue, but rather a PHP issue that should be reported to PHP developers.
 
It was opcache.validate_timestamps =0 in my main php.ini of php 8.2 not in 8.1
; When disabled, you must reset the OPcache manually or restart the
; webserver for changes to the filesystem to take effect.
I don't know this was turned off.
This is resolved.
 
Back
Top