Michael C. Toren on Sat, 1 Jan 2000 21:38:06 -0500 (EST)


[Date Prev] [Date Next] [Thread Prev] [Thread Next] [Date Index] [Thread Index]

Re: [Plug] You've *got* to see this...


> http://www.2600.com
> 
> Take a look, quick, before the condition is corrected.  :)

This may just be a joke.  The HTTP daemon is serving out pages with a
return code of 200, which indicates success.  Also, note the Date and
Last-Modified headers:

    [mct@access:(1052) ~]$ telnet www.2600.com 80
    Trying 207.99.30.230 ...
    Connected to www.2600.com.
    Escape character is '^]'.
    GET / HTTP/1.0
    
    HTTP/1.1 200 OK
    Date: Sun, 02 Jan 2000 02:33:06 GMT
    Server: Apache/1.3.6 (Unix)
    Last-Modified: Sat, 01 Jan 2000 18:52:49 GMT
    ETag: "7bccf-250-386e4d01"
    Accept-Ranges: bytes
    Content-Length: 592
    Connection: close
    Content-Type: text/html
    
    <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
    <HTML><HEAD>
    <TITLE>Internal Server Error</TITLE>
    </HEAD><BODY>
    <H1>Internal Server Error</H1>
    The date specified (01-01-1900) is impossible. If you have forced this
    error condition, you may be in violation of state, federal, and/or civil
    [...]

-mct