On my PHP script, I get a timeout.
Here is the script:
<?php
$fp = fsockopen("64.62.227.24", 6210, $errno, $errstr, 1); //open connection yet again
if(!$fp) { //if connection
echo("Fail: $errno - $errstr");
}
else{
echo("Success");
}
?>
and here is the result when I run it from server123 (triphopstop.com)
Warning: fsockopen(): unable to connect to 64.62.227.24:6210 in /home/jjrrftt/public_html/testgrab.php on line 2
Fail: 110 - Connection timed out