Reputation: 4162
Internet explorer 6 VS1 doesn't support gzip compression correctly.
It does however understand deflate.
Is it sufficient to change the scheme name in applicationhost.config
from gzip to deflate to fix this issue?
Are there any downsides to using deflate instead of gzip?
<!-- c:\windows\system32\inetsrv\config\applicationhost.config -->
<httpCompression directory="%SystemDrive%\inetpub\temp\IIS Temporary Compressed Files">
<!-- changed name="gzip" to name="deflate" -->
<scheme name="deflate" dll="%Windir%\system32\inetsrv\gzip.dll" />
<dynamicTypes>
[...]
</dynamicTypes>
<staticTypes>
[...]
</staticTypes>
</httpCompression>
Related links:
Upvotes: 4
Views: 423
Reputation: 4162
It doesn't seem to solve the problem. Internet explorer 6 VS1 doesn't support gzip nor deflate. :-(
At least not when using dynamic compression on iis.
Upvotes: 1