vote up 1 vote down star

I'm loading jQuery from google on my site (http://ajax.googleapis.com/ajax/libs/jquery/1.3/jquery.min.js) which is minned and gzip'd. In firefox, the jquery file shows as a 19k request, but Safari shows it as a 56k request. I'm assuming then that Safari is not accepting it as a gzip'd file. What's the deal? It's coming from google and I'm pretty sure it's supposed to be gzip'd

flag

79% accept rate

2 Answers

vote up 1 vote down check

Might want to have a look at this link.

After some digging around I learned that you cannot send compressed javascripts to Safari with the extension of “gz”. It must be “jgz”

So seems the issue actually is with Google serving it up as "gz" rather than "jgz" like Safari wants it.

link|flag
vote up 1 vote down

I see at least two possibilities :

  • maybe safari is not sending the HTTP header that indicates "I am able to receive gzip" ; that header is Accept-Encoding, and its value is generally compress, gzip
  • maybe Safari is indicating the size of the un-compressed data ?

Do you have some kind of "network sniffer", like wireshark (seems there is version for MacOS), to really see what's going through the network ?

link|flag
Gave wireshark a brief chance but it had a bunch of errors on load and didn't load up any network interfaces. I think Eric has a good point although that's incredibly frustrating if I can't use google to serve gzip'd files – brad Aug 5 at 19:35
Too bad :-( The link @Eric posted speaks about some kind of .gz or .jgz extension ; I see none of those in the URL you gave : it has a .js extension -- and google not sending gzipped data seems a pretty strange idea, considering that safari is a recent browser, and that it would help them reduce bandwith costs... Still... If you find the solution, let us know ! – Pascal MARTIN Aug 5 at 19:48

Your Answer

Get an OpenID
or

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