Re: [PHP-WIN] cache control at client

2007-04-13 Thread Mikael Grön
Even more interesting is that it's exactly what's said here: http://support.microsoft.com/kb/222064 Why write stuff that's already written? :) Mike Alf Stockton skrev: Mikael Grön wrote: What I generally use for no-cache is this: Also, to force it to work correctly, I've seen people do stu

Re: [PHP-WIN] cache control at client

2007-04-12 Thread bedul
Thursday, April 12, 2007 10:50 PM Subject: Re: [PHP-WIN] cache control at client > Mikael Grön wrote: > > What I generally use for no-cache is this: > > > > > > Also, to force it to work correctly, I've seen people do stuff like this: > > > > > >

Re: [PHP-WIN] cache control at client

2007-04-12 Thread Rich Buggy
Alf I had a similar problem trying to expire pages so that the user received a "Page Expired" message when they clicked on the back button. I discovered that if you set Cache-control to no-cache then Firefox/IE ignore the expires date. The solution that I got working on IE7 was to set Cache-contro

Re: [PHP-WIN] cache control at client

2007-04-12 Thread Alf Stockton
Mikael Grön wrote: What I generally use for no-cache is this: Also, to force it to work correctly, I've seen people do stuff like this: Pragma No-cache This is an example of where to place the second header section so that the "Pragama, No-Cache" metatag will work as it is supposed to.

Re: [PHP-WIN] cache control at client

2007-04-12 Thread Mikael Grön
What I generally use for no-cache is this: Also, to force it to work correctly, I've seen people do stuff like this: Pragma No-cache This is an example of where to place the second header section so that the "Pragama, No-Cache" metatag will work as it is supposed to. Supposedly the