I got a problem. A client site im working on is loading super slow. I'm trying to setup gzip and or mod_deflate. The few site analyzers i've used so far claim that gzip is active but whats with such slow page load (besides the fact that it could be PageLines) ?
Can anyone give me gzip or mod_deflate tips and an example of what I should have in my php.ini and htaccess? I got this so far
<IfModule mod_deflate.c>
AddOutputFilterByType DEFLATE text/html text/plain text/xml text/css application/x- javascript
BrowserMatch ^Mozilla/4 gzip-only-text/html
BrowserMatch ^Mozilla/4\.0[678] no-gzip
BrowserMatch \bMSIE !no-gzip !gzip-only-text/html
</IfModule>
