Re: [PHP] Browser caching problem.

2004-09-19 Thread Octavian Rasnita
PROTECTED] To: [EMAIL PROTECTED] Sent: Sunday, September 19, 2004 2:25 AM Subject: Re: [PHP] Browser caching problem. On Sunday 19 September 2004 07:12, Daniel Guerrier wrote: I'm using this code to dynamically retrieve windows media files and send it to the browser. I thought the cache header

[PHP] Browser caching problem.

2004-09-18 Thread Daniel Guerrier
I'm using this code to dynamically retrieve windows media files and send it to the browser. I thought the cache header would prevent the file from being cached. The only problems is the .wmv file still ends up in my IE temp files folder. How can I prevent this from happening? ?php

Re: [PHP] Browser caching problem.

2004-09-18 Thread Jason Wong
On Sunday 19 September 2004 07:12, Daniel Guerrier wrote: I'm using this code to dynamically retrieve windows media files and send it to the browser. I thought the cache header would prevent the file from being cached. The only problems is the .wmv file still ends up in my IE temp files

Re: [PHP] Browser caching problem.

2004-09-18 Thread Daniel Guerrier
I am streaming it. That code is in an .asx metafile. I assume it is supposed to work like a .ram for real media. Microsoft suggests using an asx file to stream media. It does stream, I just do not want it to be cached in my IE temp files. --- Jason Wong [EMAIL PROTECTED] wrote: On Sunday 19

[PHP] browser caching

2002-03-15 Thread Peter Hall
Hi, I'm having difficulty getting a php page to reload when the user goes back to it. The page is initially loaded with no variables passed, but is then reloaded with variables passed with GET and also retrieves variables from a session cookie, which is set by a different page on first load.

[PHP] Browser Caching

2001-04-29 Thread Steve Haemelinck
Hi all I use sessions the authenticate users, but I seem to have a problem. This is what happens: 1) A user logs in on PC one with his username and password. (So far so good) 2) Another user logs in with his details on the same computer -- He is logged in with his details but the page

Re: [PHP] Browser Caching

2001-04-29 Thread Chris Adams
On 29 Apr 2001 07:19:15 -0700, Steve Haemelinck [EMAIL PROTECTED] wrote: I thought this was because the page might be cached, but when I set the header(cache-control: no-cache) the meta tag http-equiv=Expires content=-1 it still produces the same effect. How can I solve this problem? Have