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
If you talk directly to the fastcgi port, url is only the path, /status by default. This means if you run several different php-fpm daemons (for example: multiple version of PHP) on different ports, those all overwrite each others stored data.
To fix, you could probably hash more data (including $o_port) in
my $TempFile = $TempPath.$o_host.'_check_phpfpm_status'.md5_hex($url);
The text was updated successfully, but these errors were encountered:
If you talk directly to the fastcgi port,
url
is only the path,/status
by default. This means if you run several different php-fpm daemons (for example: multiple version of PHP) on different ports, those all overwrite each others stored data.To fix, you could probably hash more data (including
$o_port
) inThe text was updated successfully, but these errors were encountered: