In your roster directory, create two files
.htaccess
- Code: Select all
php_value auto_prepend_file <filesystem path to roster>/head.php
head.php
- Code: Select all
<?php
ob_start("ob_gzhandler");
?>
This turns on compression for the roster, which took the html portion of my roster from 350kb, down to 19kb. This doesn't work on images, but it's a HUGE change in file size. It may not make load time any faster, but it will definetly use less bandwidth.
PLEASE NOTE:
There should NOT be any spaces before the <?php or after the ?>