• Introducing WebPros Cloud - a fully managed infrastructure platform purpose-built to simplify the deployment of WebPros products !  WebPros Cloud enables you to easily deliver WebPros solutions — without the complexity of managing the infrastructure.
    Join the pilot program today!
  • Support for BIND DNS has been removed from Plesk for Windows due to security and maintenance risks.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS.

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