Thanks, looking into installing and activating the wp-supercache plugin.
---------- Post added at 02:57 AM ---------- Previous post was at 02:49 AM ----------
All, I found the following to decrease the load time of WordPress using gzip:
<?php if (substr_count($_SERVER['HTTP_ACCEPT_ENCODING'], ‘gzip‘)) ob_start(“ob_gzhandler”); else ob_start(); ?>
Would it work? Which one is better, use the above code, activating wp-supercache plugin, or combination of both?