• The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    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. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

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