Re: [PHP] how do I stop Firefox doing a conditional get?

2008-05-15 Thread Al
Make certain your steam is compressed http://www.whatsmyip.org/mod_gzip_test/ Per Jessen wrote: Robin Vickery wrote: 2008/5/14 Per Jessen [EMAIL PROTECTED]: The issue is - I'd like this page to appear to be as real time as possible, and the occasional delay caused by the conditional get

Re: [PHP] how do I stop Firefox doing a conditional get?

2008-05-15 Thread Robin Vickery
On 15/05/2008, Al [EMAIL PROTECTED] wrote: Make certain your steam is compressed http://www.whatsmyip.org/mod_gzip_test/ Compressed steam can be dangerous: http://en.wikipedia.org/wiki/2007_New_York_City_steam_explosion -robin -- PHP General Mailing List (http://www.php.net/) To

Re: [PHP] how do I stop Firefox doing a conditional get?

2008-05-15 Thread Per Jessen
Al wrote: Make certain your steam is compressed http://www.whatsmyip.org/mod_gzip_test/ The files I was having the problem with are GIFs, so already LZW compressed. /Per Jessen, Zürich -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] how do I stop Firefox doing a conditional get?

2008-05-15 Thread Al
Try by not LZW compressing and the use ob_start() and flush() so your files are gzip compressed. I don't know if Firefox knows how to readily handle LZW on the fly. It does know how to handle gzip. Per Jessen wrote: Al wrote: Make certain your steam is compressed

Re: [PHP] how do I stop Firefox doing a conditional get?

2008-05-15 Thread Per Jessen
Al wrote: Per Jessen wrote: Al wrote: Make certain your steam is compressed http://www.whatsmyip.org/mod_gzip_test/ The files I was having the problem with are GIFs, so already LZW compressed. Try by not LZW compressing and the use ob_start() and flush() so your files are gzip

[PHP] how do I stop Firefox doing a conditional get?

2008-05-14 Thread Per Jessen
All, not really PHP related, but I figured someone here would already have solved this problem. I've got a page with a single img. I change the src attribute dynamically using javascript. Although the images being served all have long expiry times, Firefox still does a conditional get to

Re: [PHP] how do I stop Firefox doing a conditional get?

2008-05-14 Thread Robin Vickery
2008/5/14 Per Jessen [EMAIL PROTECTED]: All, not really PHP related, but I figured someone here would already have solved this problem. I've got a page with a single img. I change the src attribute dynamically using javascript. Although the images being served all have long expiry

Re: [PHP] how do I stop Firefox doing a conditional get?

2008-05-14 Thread Per Jessen
Robin Vickery wrote: 2008/5/14 Per Jessen [EMAIL PROTECTED]: The issue is - I'd like this page to appear to be as real time as possible, and the occasional delay caused by the conditional get is a nuisance. My images are clearly cached, so how do I prevent Firefox from doing the