Have you checked to make sure mIRC can connect to port 80? Try this script if you will. It may take up to a couple minutes for the error message to be returned. so be patient.
Quote:

alias tst.open { sockopen checktv e-motz.com 80 }
on 1:SOCKOPEN:checktv: {
if ($sockerr > 0) echo -a $sock($sockname).wsmsg | return
sockwrite -n $sockname GET / HTTP/1.0
sockwrite -n $sockname Host: e-motz.com
sockwrite -n $sockname Connection: keep-alive
sockwrite $sockname $crlf
}
on 1:SOCKREAD:checktv: {
sockread -f &data
bwrite tst.txt -1 -1 &data
}

Last edited by MTec007; 11/12/08 10:07 PM.