tags:

views:

807

answers:

7

As prescribed by Yahoo!, gzip'ng files would make your websites load faster. The problem? I don't know how :p

+8  A: 

http://www.webcodingtech.com/php/gzip-compression.php

Or if you have Apache, try http://www.askapache.com/htaccess/apache-speed-compression.html

Some hosting services have an option in the control panel. It's not always possible, though, so if you're having difficulty, post back with more details about your platform.

Mark
+2  A: 
Darren Hicks
A: 

Why are people downvoting this question? It was a legit question.

jdelator
It's really vague and difficult to answer.
Jim Puls
i think it's a really good question actually!
nickf
A: 

http://developer.yahoo.com/performance/rules.html#gzip

This is the reference if any asks me about my reference loading gzipped files

Thorpe Obazee
don't write that as an answer but edit your question. this is not a forum.
tharkun
sorry about that
Thorpe Obazee
+2  A: 

Edit your httpd.conf file.

Add this line to load the module:

LoadModule deflate_module modules/mod_deflate.so

Add these lines to actually compress the output:

AddOutputFilterByType DEFLATE text/css text/html application/x-javascript application/javascript
BrowserMatch ^Mozilla/4 gzip-only-text/html
BrowserMatch ^Mozilla/4\.0[678] no-gzip
BrowserMatch \bMSIE !no-gzip !gzip-only-text/html
amikazmi
A: 

If you are using Lighttpd, there is mod_compress.

+1  A: 

Jetty will look for gzip'd versions of static files, as well as it has a GzipFilter for dynamic content.

You could probably pull the GzipFilter over into Tomcat if you wanted more control over compression than just Tomcat's connector-level compression...

http://docs.codehaus.org/display/JETTY/GZIP+Compression

Erich