You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When multiple requests are sent to the server at the same time. The following error occurs.
Why is it not checked that the file exists when the file is about to be deleted?
Is it possible that an earlier process has deleted the file in processes that occur simultaneously?
while (false !== ($filename = readdir($dh))) {
if (empty($filename)) {
continue;
}
if ($filename[0] === '.') {
continue;
}
$key = substr($filename, 0, strlen($filename) - 4);
if ($this->isOld($key, $config)) {
unlink($dir . '/' . $filename);
}
}
Why package version 4.17 registered but cache file version is 4.15?
class HTMLPurifier_Config
{
/**
* HTML Purifier's version
* @type string
*/
public $version = '4.17.0';
}
Web server: nginx
Php : 8.2
Package: "ezyang/htmlpurifier": "^4.17.0"
The text was updated successfully, but these errors were encountered:
When multiple requests are sent to the server at the same time. The following error occurs.
Why is it not checked that the file exists when the file is about to be deleted?
Is it possible that an earlier process has deleted the file in processes that occur simultaneously?
Why package version 4.17 registered but cache file version is 4.15?
Web server: nginx
Php : 8.2
Package: "ezyang/htmlpurifier": "^4.17.0"
The text was updated successfully, but these errors were encountered: