IE6 freezes due to * server * configuration

Our website (Rails runs) freezes IE6 almost every time. The same code deployed on a different server does not block IE6. Where and how should we track this?

+5
source share
8 answers

You need to determine the difference between the two, so I would start with the following:

curl -D first.headers -o first.body http://first.example.com
curl -D second.headers -o second.body http://second.example.com
diff -u first.headers second.headers
diff -u first.body second.body
+6
source
  • Perhaps a communication problem. Try a proxy server against a server that freezes and a server that does not freeze. Compare the results to see if there is a difference.

  • Clarify the problem. Start cutting code until IE6 freezes. Then you can find out exactly what causes the problem.

+3
source

AJAX. , GZIP. GZIP , IE6 . GZIP , IE6 /.

, GZIP , , / IE6. GZIP .js,.html JSON.

+2

IE6 , , - Google...

+1

Firefox Firebug HTTP .

0

? , IE6 , , IE6, !

: - P

0

, , .

GZIP. , gzip ScriptResources, javascripts, .NET.

Apparently, there is an error in IE6 that causes freezing, we believe that the browser receives the files and analyzes them before unpacking , which leads to freezing.

Now we have disabled gzip compression, but since we have a large number of files provided through the ScriptsResource manager, we need a different solution.

-1
source

All Articles