CodingForums.com

CodingForums.com (http://www.codingforums.com/index.php)
-   PHP (http://www.codingforums.com/forumdisplay.php?f=6)
-   -   Compress images/content on load that are within frames (http://www.codingforums.com/showthread.php?t=286033)

chostwales 01-18-2013 11:20 PM

Compress images/content on load that are within frames
 
Hi All,

We have developed this site: http://www.aloha-connect.com/

Our issue is that within this page, we have many frames.. in some cases, frame within a frame.

Our issue is, that on connections with low bandwidth. It can take a long time to load. We have tried using the php gzip code: <?php ob_start("ob_gzhandler"); ?> to load, but we are noticing that the frame contents are not loading as quick. We then tried putting the <?php ob_start("ob_gzhandler"); ?> code within the frame pages as well and didn't make any difference.

Same happens on this page as well http://aloha-connect.com/rates/

Any support/suggestions appreciated.

Fou-Lu 01-19-2013 03:23 AM

I would expect this behaviour. Although a benchmark could be used to verify, it will take you longer to compress this on the server end, send it to the client, and decompress on the client. The gain is a reduction in the throughput required, and the trade off loss is time.
Not sure why you want to use frames since they're a bit on the antiquated side nowadays, but if you are using them and the site is internal frames, if you make use of sessions you need to ensure that they are forced closed with session_write_close as soon as they are done on each page. Otherwise every page is waiting for another one to finish loading to release the lock on the session file.


All times are GMT +1. The time now is 01:00 AM.

Powered by vBulletin®
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.