• Plesk Uservoice will be deprecated by October. Moving forward, all product feature requests and improvement suggestions will be managed through our new platform Plesk Productboard.
    To continue sharing your ideas and feedback, please visit features.plesk.com

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