IE pukes on my page
January 3, 2006 7:20 PM   Subscribe

My main page opens fine in Safari and Firefox for Win and Mac, but acts like I am trying to download a file in IE. Any suggestions?
posted by spartacusroosevelt to Computers & Internet (1 answer total)
 
Yep, your server is sending back a bad Content-Type header - here's a raw HTTP session:

Nics-PowerBook:~ % telnet www.spartacusroosevelt.com 80
Trying 82.165.193.250...
Connected to www.spartacusroosevelt.com.
Escape character is '^]'.
GET / HTTP/1.0
Host: www.spartacusroosevelt.com

HTTP/1.1 200 OK
Date: Wed, 04 Jan 2006 03:42:48 GMT
Server: Apache/1.3.33 (Unix)
X-Pingback: http://www.spartacusroosevelt.com/wordpress/xmlrpc2.php
X-Powered-By: PHP/4.4.1
Connection: close
Content-Type: ; charset=utf-8


Then it returns your home page, which looks fine. The problem is that last response header, which should have "text/html" between the colon and semicolon. Something's wrong in your Apache or PHP setup.
posted by nicwolff at 7:46 PM on January 3, 2006


« Older basic paint program for OSX?   |   what is the best way to get from phoenix to tucson... Newer »
This thread is closed to new comments.