How to link to a gzipped javascript in an html document? - Stack Overflow most recent 30 from stackoverflow.com2009-11-26T19:26:13Zhttp://stackoverflow.com/feeds/question/188138http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/188138/how-to-link-to-a-gzipped-javascript-in-an-html-document3How to link to a gzipped javascript in an html document?The Wicked Flea2008-10-09T16:46:00Z2008-10-19T06:45:53Z
<p>I've seen a number of references to gzipping a javascript to save download time. <em>But</em> I also see a number of warnings that certain browsers do not support this.</p>
<p>I have two different methods at my disposal:</p>
<ol>
<li>use mod_deflate to make Apache compress JS/CSS files in a given directory through htaccess</li>
<li>use ob_start('gzhandler') to compress a file and return it to the browser with the correct headers.</li>
</ol>
<p>The problems with method 1 are that not all browsers support mod_deflate, and I have no clue how to write the htaccess file to be smart enough to adjust for this.</p>
<p>The problem with method 2 is that there is no definitive answer about how to tell if a browser supports a gzipped script, or stylesheet, and that if it does what mime-type must be given as the content type in the header.</p>
<p>I need some advice. First, which method is more universally accepted by browsers? Second, how do I decay using either method to provide the uncompressed backup script? Third, would <code><script src="js/lib.js.gz" type="text/javascript"></script></code> work by itself? (It obviously wouldn't decay.)</p>
<p>For the record, I'm using PHP5 with mod_deflate and full gzip creation capabilities, and my doctype is xhtml strict. Also, the javascript itself is compressed with YUI. <strong>Edit:</strong> I just went back and looked, but I have only Apache 1.3; I thought I had 2, so sorry for mentioning mod_deflate when I probably don't have it.</p>
http://stackoverflow.com/questions/188138/how-to-link-to-a-gzipped-javascript-in-an-html-document/188205#1882051Answer by nsayer for How to link to a gzipped javascript in an html document?nsayer2008-10-09T17:01:22Z2008-10-09T17:19:07Z<p>The best way to achieve this is for your server to support inline gzip. You would take the ".gz" off both the script tag's src attribute and store the file on the server uncompressed. If the client supported it, the server would automatically send the script as a gzip encoded result. This does cost your server some extra CPU, but the file gets compressed for those clients that support it, while older clients still get the expanded version.</p>
<p>Check out mod_deflate for apache2. mod_gzip is the equivalent for Apache 1.x.</p>
http://stackoverflow.com/questions/188138/how-to-link-to-a-gzipped-javascript-in-an-html-document/188216#1882167Answer by Owen for How to link to a gzipped javascript in an html document?Owen2008-10-09T17:04:53Z2008-10-09T17:16:49Z<p>mod_deflate and php's gzhandler both are based on zlib, so in that sense there is little difference to a browser how the content is being compressed.</p>
<p>in response to your first concern, you can set module specific .htaccess info like this:</p>
<pre><code><IfModule mod_deflate.c>
# stuff
</IfModule>
</code></pre>
<p>in response to your second concern, you can detect for browser support in PHP:</p>
<pre><code>if (strstr($_SERVER['HTTP_ACCEPT_ENCODING'], 'gzip') ) {
ob_start('ob_gzhandler');
header("Content-Encoding: gzip");
// etc...
}
</code></pre>
<p>here's some untested .htaccess that should be able to handle negotiation of compressed vs uncompressed .js files: (<a href="http://zuble.blogspot.com/2007/02/compressed-js-and-modrewrite.html" rel="nofollow">source</a>)</p>
<pre><code><FilesMatch "\\.js.gz$">
ForceType text/javascript
Header set Content-Encoding: gzip
</FilesMatch>
<FilesMatch "\\.js$">
RewriteEngine On
RewriteCond %{HTTP_USER_AGENT} !".*Safari.*"
RewriteCond %{HTTP:Accept-Encoding} gzip
RewriteCond %{REQUEST_FILENAME}.gz -f
RewriteRule (.*)\.js$ $1\.js.gz [L]
ForceType text/javascript
</FilesMatch>
</code></pre>
http://stackoverflow.com/questions/188138/how-to-link-to-a-gzipped-javascript-in-an-html-document/188271#1882710Answer by Ates Goral for How to link to a gzipped javascript in an html document?Ates Goral2008-10-09T17:18:11Z2008-10-09T17:18:11Z<p>If the browser is properly setting it's <code>Accept-Encoding</code> header, you should be able to tell if the browser can support gzip:</p>
<pre><code>Accept-Encoding: gzip,deflate
</code></pre>
http://stackoverflow.com/questions/188138/how-to-link-to-a-gzipped-javascript-in-an-html-document/216117#2161170Answer by sibirya for How to link to a gzipped javascript in an html document?sibirya2008-10-19T06:45:53Z2008-10-19T06:45:53Z<p>thanks a lot</p>