Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

My site is gzipped compressed, and it doesn't load properly in IE. It works fine in FF/Chrome, but in IE, the only thing that pops up is a box asking to download the .gz file which contains the html document for the page.

Is this normal? Do I have to turn off gzip?

share|improve this question
1  
Which version of Internet Explorer? – Mez Aug 6 '09 at 22:24
IE 7. haven't tested on 6 or 8 yet – chris Aug 6 '09 at 22:31

3 Answers

up vote 12 down vote accepted

Are you sending the correct headers?

You need to send the

Content-Encoding: gzip

header for IE to understand that it is gzipped (Firefox, et al are smart enough to detect this automatically - even though they shouldn't!)

In PHP, you can do this using:-

header('Content-Encoding: gzip');
share|improve this answer
3  
header("Content-Encoding: gzip"); – danamlund Aug 6 '09 at 22:21
thanks guys that was helpful – chris Aug 6 '09 at 23:58
5  
"Detecting this automatically" isn't legal. – EricLaw Jul 30 '10 at 18:35

One thing to add - you should turn off gzip compression for IE6 pre-SP2. Before SP2, IE6 doesn't always read and cache gzipped content properly and you end up with mangled code.

You can identify an IE6 SP2 install by looking for "SV1" in the user-agent string.

share|improve this answer

I have seen problems when using gzip with Internet Explorer on a page that has flash on it. If your page has flash this may be why. I don't remember the cause and at the time we found it it was causing problems on a live site so we just disabled gzip for Internet Explorer to get around it.

share|improve this answer
This is a valid comment, IE6 if it sees "Vary" header along with Content-Encoding as gzip it fails to retrieve the complete response. – shivaspk Jan 15 at 8:11

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.