I have connected to that server with
netcat www.baycolonies.org 80
OPTIONS * HTTP/1.1
and it showed no information about supported http versions. But the responses for GET / with HTTP/0.9 to HTTP/1.1 are showing that the server can handle them.
You can trace the faulty request in server logs (if you know exactly when it happened or the user can reproduce the error).
Main Topics
Browse All Topics





by: stsonlinePosted on 2009-01-13 at 15:34:15ID: 23368601
You can always telnet to port 80 and see if the web server returns basic HTML info. For example, from a command prompt type 'telnet www.baycolonies.org 80' and see if you get a connection. If so, type GET and press return, if the web server supports GET without parameters (many do), you should see something like this:
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
... which would tell you the web server supports HTML 2.0 English language version.