Re: [PHP] Browser cache setting

2008-01-14 Thread Richard Lynch
All the browsers cache unless the end user works at it to change that, or you force it to not cache by giving it a different URL each time. Playing games with "no-cache" headers (et al) will only give you a bug-list of arcane browwses that don't honor those headers. YMMV On Fri, January 11, 2008

Re: [PHP] Browser cache setting

2008-01-11 Thread Richard Heyes
I'm pretty certain it's automatic in most. I think Firefox has a default 50Mb of cache-space. Great, thanks. -- Richard Heyes http://www.websupportsolutions.co.uk Knowledge Base and HelpDesk software that can cut the cost of online support ** NOW OFFERING FREE ACCOUNTS TO CHARITIES AND NON-P

Re: [PHP] Browser cache setting

2008-01-11 Thread Per Jessen
Richard Heyes wrote: > Hi, > > What's the default setting for caching in browsers? With IE is it > "Automatically" as I think it is? And what about other browsers? Some > equivalent? I'm pretty certain it's automatic in most. I think Firefox has a default 50Mb of cache-space. /Per Jessen, Zür

Re: [PHP] Browser cache

2002-04-24 Thread José León Serna
I think the right answer (at least the right for me) is adding a rand value to the link of the image, that makes the browser load it every time. Thanks a lot for your help!. Best Regards. QaDRAM Studio, RAD Development for the WEB http://studi

RE: [PHP] Browser Cache

2002-04-23 Thread Maxim Maletsky \(PHPBeginner.com\)
Sorry, that was regarding the browser cache. Sincerely, Maxim Maletsky Founder, Chief Developer www.PHPBeginner.com // where PHP Begins -Original Message- From: Maxim Maletsky (PHPBeginner.com) [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 23, 2002 7:44 PM To: 'Richard Emery';

RE: [PHP] Browser cache

2002-04-23 Thread Nathan Cassano
-Original Message- From: José León Serna [mailto:[EMAIL PROTECTED]] Sent: Tuesday, April 23, 2002 9:31 AM To: [EMAIL PROTECTED] Subject: [PHP] Browser cache Hello: How could I disable the browser cache?, I have a script that generates an image and shows it via . The problem is if

Re: [PHP] Browser cache

2002-04-23 Thread Jennifer Downey
PLEASE TAKE THIS OUT OF MY THREAD. I am trying to get an answer to my question. Not yours. Thank you Jennifer "Stuart Dallas" <[EMAIL PROTECTED]> wrote in message 000d01c1eae5$96243450$de01420a@stuart">news:000d01c1eae5$96243450$de01420a@stuart... > José León Serna <[EMAIL PROTECTED]> wrote: > >

Re: [PHP] Browser cache

2002-04-23 Thread Stuart Dallas
José León Serna <[EMAIL PROTECTED]> wrote: > Hello: > How could I disable the browser cache?, I have a script that > generates an image and shows it via . The problem > is if I change the image, the browser doesn't reflect the changes > until I push refresh. I supose is sending a header, but w

Re: [PHP] Browser cache

2002-04-23 Thread Rodolfo Gonzalez
http://www.php.net/manual/en/function.header.php RT... M :) On Tue, 23 Apr 2002, José León Serna wrote: > Hello: > How could I disable the browser cache?, I have a script that generates > an image and shows it via . The problem is if I change > the image, the browser doesn't reflect the cha

Re: [PHP] Browser cache and form with $PHP_SELF

2001-01-11 Thread Egan
On Wed, 10 Jan 2001 12:13:26 +0530, "Hrishi" <[EMAIL PROTECTED]> wrote: >Cache-Control: no-cache > >will make sure any proxies/ISP caches will also not store the page. Yes this works. I can see that IE5 does not cache the page locally, by looking in Temporary Internet Files. I realize now thou

Re: [PHP] Browser cache and form with $PHP_SELF

2001-01-09 Thread Egan
On Wed, 10 Jan 2001 12:13:26 +0530, "Hrishi" <[EMAIL PROTECTED]> wrote: >try adding a header("Expires: 0"); line at the top of the script. this will >provide an 'already expired' page to the user. i.e., the browser will not >store the page in cache at all. >other headers are: > >Cache-Control: ma

Re: [PHP] Browser cache and form with $PHP_SELF

2001-01-09 Thread Hrishi
try adding a header("Expires: 0"); line at the top of the script. this will provide an 'already expired' page to the user. i.e., the browser will not store the page in cache at all. other headers are: Cache-Control: max-age=0 Cache-Control: no-cache these will make sure any proxies/ISP caches w