• Debian 11 is approaching its end-of-life (vendor EOL date - August 31, 2026). Plesk Obsidian 18.0.80 will be the last release to support it.
    If you are running Plesk Obsidian on Debian 11, we recommend you upgrade those servers to Debian 12 using our dist-upgrade tool.
  • We plan to deprecate and remove the support for XML RPC protocol versions earlier than 1.6.9.1 in Plesk Obsidian 18.0.82. We strongly recommend that you update all existing integrations using earlier versions of the XML RPC protocol to comply with the version 1.6.9.1 specification.

php function fsockopen() don't work in 7.5.4

E

esupport.org.ua

Guest
Hi

I am try use fsockopen() but got a BUG:
Warning: fsockopen(): php_hostconnect: connect failed in /home/***/test.php on line 2

Warning: fsockopen(): unable to connect to 127.0.0.1:80 in /home/***/test.php on line 2
Operation now in progress (115)

psa version is: 7.5.4-rh9.build75050824.12
php version is: 4.3.2-psa.rh9.1

Not a fresh version php, isn't ? :)

Use google, I found this bug:
http://bugs.php.net/bug.php?id=21653 and http://bugs.php.net/bug.php?id=24785

Where can recive the php rmp for ples without this bug?


Oh, yea! I don't forget post php script code:

<?php
$fp = fsockopen ("127.0.0.1", 80, $errno, $errstr, 60);
if (!$fp) {
echo "$errstr ($errno)<br>\n";
} else {
fputs ($fp, "GET / HTTP/1.0\r\nHost: localhost\r\n\r\n");
while (!feof($fp)) {
echo fgets ($fp,128);
}
fclose ($fp);
}
?>
 
No answer? No solution?

Ok, I tell on WHT forum about plesk and redhat9
 
Back
Top