RE: [PHP] Internet Explorer Caching

2007-08-30 Thread Daevid Vincent
Here are some cache things we do for IE... // workaround for IE bug that prevents downloading files from an httpS site // (see http://support.microsoft.com/default.aspx?scid=kb;en-us;316431 ) session_cache_limiter('public'); // This ensures that most browsers known to human beings won't try to

[PHP] Internet Explorer Caching - Solved

2007-08-30 Thread Charlene
Charlene wrote: I've been having problems with Internet Explorer caching php programs. I'm using the following code: header("Cache-Control: no-cache, must-revalidate"); // HTTP/1.1 header("Pragma", "no-cache"); header("Expires", "-1"); And it used to work, but now, accord

Re: [PHP] Internet Explorer Caching

2007-08-30 Thread Stut
Satyam wrote: I'm sending these headers: header('Cache-Control: no-cache, must-revalidate'); // HTTP/1.1 header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); // Date in the past I don't remember where I took them from, but they are working fine for me. Probably not relevant to the pr

Re: [PHP] Internet Explorer Caching

2007-08-29 Thread Jim Lucas
Charlene wrote: Unfortunately I don't have a choice. I have to be able to handle IE. And IE is caching the page. I can see it in my Temporary Internet Files folder. And the Expiration Date is 3 hours after the file is created. If I delete the file, a new one is created and the Expiration Da

Re: [PHP] Internet Explorer Caching

2007-08-29 Thread Charlene
Unfortunately I don't have a choice. I have to be able to handle IE. And IE is caching the page. I can see it in my Temporary Internet Files folder. And the Expiration Date is 3 hours after the file is created. If I delete the file, a new one is created and the Expiration Date is 3 hours a

Re: [PHP] Internet Explorer Caching

2007-08-29 Thread Charlene
Unfortunately I don't have a choice. I have to be able to handle IE. And IE is caching the page. I can see it in my Temporary Internet Files folder. And the Expiration Date is 3 hours after the file is created. If I delete the file, a new one is created and the Expiration Date is 3 hours a

Re: [PHP] Internet Explorer Caching

2007-08-29 Thread Richard Lynch
On Wed, August 29, 2007 2:10 pm, Charlene wrote: > I forgot to mention in my question that only IE appears to cache. And > with the way my PHP program goes, I'm constantly changing the URL as I > go through the application to modify data and status message. But > whenever I return the the edit pa

Re: [PHP] Internet Explorer Caching

2007-08-29 Thread Charlene
"Charlene" <[EMAIL PROTECTED]> Cc: Sent: Wednesday, August 29, 2007 5:50 PM Subject: Re: [PHP] Internet Explorer Caching Charlene wrote: I've been having problems with Internet Explorer caching php programs. I'm using the following code: header("Cache-C

Re: [PHP] Internet Explorer Caching

2007-08-29 Thread Charlene
I forgot to mention in my question that only IE appears to cache. And with the way my PHP program goes, I'm constantly changing the URL as I go through the application to modify data and status message. But whenever I return the the edit page, the old data is showing up. Charlene Richard Ly

Re: [PHP] Internet Explorer Caching

2007-08-29 Thread Charlene
Yes, I'm sure. Changes I make to a database are reflected in the database but not on the form. It's only IE. It works fine in FireFox or SeaMonkey. Charlene Richard Heyes wrote: Charlene wrote: I've been having problems with Internet Explorer caching php programs. I'm using the following

Re: [PHP] Internet Explorer Caching

2007-08-29 Thread Richard Lynch
On Wed, August 29, 2007 10:43 am, Charlene wrote: > I've been having problems with Internet Explorer caching php programs. > I'm using the following code: > > header("Cache-Control: no-cache, must-revalidate"); // > HTTP/1.1 > header("Pragma", "no-cache"); > header("Expires"

Re: [PHP] Internet Explorer Caching

2007-08-29 Thread Nate
; Satyam > > > - Original Message - > From: "Richard Heyes" <[EMAIL PROTECTED]> > To: "Charlene" <[EMAIL PROTECTED]> > Cc: > Sent: Wednesday, August 29, 2007 5:50 PM > Subject: Re: [PHP] Internet Explorer Caching > > > > Char

Re: [PHP] Internet Explorer Caching

2007-08-29 Thread Satyam
- Original Message - From: "Richard Heyes" <[EMAIL PROTECTED]> To: "Charlene" <[EMAIL PROTECTED]> Cc: Sent: Wednesday, August 29, 2007 5:50 PM Subject: Re: [PHP] Internet Explorer Caching Charlene wrote: I've been having problems with Internet Explorer c

Re: [PHP] Internet Explorer Caching

2007-08-29 Thread Richard Heyes
Charlene wrote: I've been having problems with Internet Explorer caching php programs. I'm using the following code: header("Cache-Control: no-cache, must-revalidate"); // HTTP/1.1 header("Pragma", "no-cache"); header("Expires", "-1"); And it used to work, but now, accord

[PHP] Internet Explorer Caching

2007-08-29 Thread Charlene
I've been having problems with Internet Explorer caching php programs. I'm using the following code: header("Cache-Control: no-cache, must-revalidate"); // HTTP/1.1 header("Pragma", "no-cache"); header("Expires", "-1"); And it used to work, but now, according to Windows Ex