This may be placed elswhere but I could'nt find it in this version.
This dead simple mod compresses pages at the server as they delivered to the client browser (if it supports compression) using gzip.
It can give upto 80% reduction in size, so speed download, there is no extra load to server.
There is a option in admin, so if you have that 'on' don`t apply this to the client side.
This can be done for any php document.
In application_top.php both on client side & admin, near the top, after <?php
add:
ob_start("ob_gzhandler");
Thats it, you should notice a speed increase on loading admin pages immediatly, client pages will be faster, especially if using dial-up.
I have`nt found any downside to date.

