Hi all,
After some tips to do with http compression.
Got some different type of sites.
The first type is more image heavy, or at least one particular image is a bit large - a png image which im struggling to reduce in filesize. So wondering if doing compression server side can help speed up the download times overall and would help in loading that image quicker.
The 2nd type is a wordpress site, and has numerous plugins, flash and javascript built into it. I've looked into this a little bit, and seen and tried wp-cache and wp-http compression or something. but it didn't seem to work. Is there anything that could be done to help speed it up?
The sites all run Apache (hence been posted in this forum), and have access to .htaccess, but not the server directly.
Would deflate offer advantages over gzip or vica versa? Would doing PHP tricks help at all, such as this:
<?php if (substr_count($_SERVER['HTTP_ACCEPT_ENCODING'], 'gzip')) ob_start("ob_gzhandler"); else ob_start(); ?>
Any help and tips would be appreciated.
:)