telnet www.phase.org 80
GET /
- this works from our dev box (default page of course).
telnet www.phase.org 80
GET / HTTP/1.1
Host: www.phase.org
- this does not work from our dev box (connection returns no data and times out). Works from my office desktop & home server though...
Lynx works on the dev box, php's file_get_contents() doesn't.
ETA:
telnet www.phase.org 80
GET
http://www.phase.org/
works, and
telnet www.phase.org 80
GET
http://www.phase.org/ HTTP/1.1
returns as "Invalid request"
Any ideas?