Hi. I have a website hosted on an Alabanza server. I have a PHP script which fopen's a URL. while most http URL's have a default of port 80, the URL im trying to open is on port 89.. it looks like:
$myFile=fopen("http://www.host.com:89/html.html", "r");
except it doesn't work. it takes a long while and then i get an error message "Transport endpoint is not connected".. i'm almost positive this means that the webserver has some sort of security block so i can't access port 89 on any server. (I have a similar script written in Perl, and i get the same problem, but without the error message. it just stalls.) But for some freaky reason, it works SOMETIMES, about 50% of the time, off and on. Has anyone had a similar problem?
~mioi