Thanks for the advice but the issues is with FF everything works in IE.

--- In [email protected], "mitek17" <[EMAIL PROTECTED]> wrote:
>
> Hi Mark,
> 
> In your PHP code remove all header control commands and just use the
> following:
> 
> header('Pragma: bogus');
> header('Cache-control: bogus');
> 
> IE has problem understanding Cache-control header, so you should just
> override it with something irrelevant.
> 
> PS And don't use Expires header - from my experience it does not work
> as well.
> 
> Cheers!
> 
> 
> --- In [email protected], "markcavins" <markcavins@> wrote:
> >
> > Hello, 
> > 
> > 
> > I am having problems getting my flex application to refresh data once
> > it has been updated on the server side and believe it is a caching
> issue.
> > 
> > In my PHP I set the caching to no cache
> > 
> > header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");          // Date in
> > the past
> > header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT"); //
> > always modified
> > header("Cache-Control: no-cache, must-revalidate");        //
HTTP/1.1 
> > 
> > but the flash player doesn't seem to respect it.
> > 
> > I have written a function in as that I believe I would have to add the
> > caching into
> > 
> >   private function resetForm():void{
> >         
> >     
> >             
> >         tempXML.asset = tempXML.asset;
> >         }
> >         
> > 
> > however I'm still a noob and not sure how to get it going.
> > 
> > Any help would be great.
> >
>


Reply via email to