Hello guyz
I would like to give some tips about this little evil.

Advantages :
- Consume less server BW
- Increase page load time, which is what we want since now its an important factor for search engines .

so how does it work ? :
if i visit http://besthostingforums.com/index.php

my browser : hi elj i need index.php
web server : give me a second to find it.
web server : oh i found it, i am sending it now
my browser : wtf ? 100 kb?.. fuck loading loading ... okay i got it !!

as you see in this example the page is 100 kb and the browser needs time to load the page.

Here is where gzip comes in.
Imagine index.php was a zip archive and you were sending it to someone ... you all know that you will reduce the size of the file

see this now :

my browser : can i have config.php? but if you have the zipped version then send that one .
web server : ok let me find it ... found it, you said you want the zipped one ? sending it now ..
my browser : only 10 kb ? thats so nice thanks man i got it, displaying now !

actually when you visit a site, your browser asks for the zipped one too, and if the site supports gzip it will give it to you otherwise it will load normaly .

If you want to enable this module on apache :

PHP Code: 
<ifModule mod_deflate.c>
  <
filesMatch "\.(css|js|x?html?|php)$">
    
SetOutputFilter DEFLATE
  
</filesMatch>
</
ifModule
with this you will gzip all css js html xhtml php... files .

And finally this tool to check if its enabled on your site :
Code: 
http://www.gidnetwork.com/tools/gzip-test.php
cgworld Reviewed by cgworld on . How to speed up your site with GZIP Hello guyz I would like to give some tips about this little evil. Advantages : - Consume less server BW - Increase page load time, which is what we want since now its an important factor for search engines . so how does it work ? : if i visit http://besthostingforums.com/index.php Rating: 5