Click to See Complete Forum and Search --> : htmltext XML issues
mr_bill
05-10-2008, 02:48 PM
I have the proxy lists site (http://centurian.org) and when a visitor visits with IE they are given a download box which is wrong it should just load the site. Works fine in FF but not in IE can some look at it and help me resolve this matter. This site was custom and can no longer reach the gentleman who coded it
you set the content type to texthtml instead of text/html. This header was sent to my browser (firefox).
mr_bill
05-10-2008, 07:20 PM
How would I be able to change this? as I see no place in the header "texthtml"
Never mind figured it out :)
I had
<meta http-equiv="content-type" content="text/html;charset=utf-8"/>
Should have been
<meta http-equiv="content-type" content="text/html; charset=utf-8"/>
was missing the space between html; charset
Thanks
should have been :
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
Note the empty space in front of the tag's end slash />
mr_bill
05-10-2008, 10:45 PM
Another space, Thank you