I had this kind of old/new page problem because of proxy cacheing.  The failsafe
is to send out the full set of don't cache headers e.g.

header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Last-Modified: " . gmdate("D, d M Y H:i:s") . "GMT");
header("Cache-Control: no-cache,must-revalidate");
header("Pragma: no-cache");

George

Miles Thompson wrote:

> Sounds like the old page is cached somewhere along the line. I am assuming
> that the same server is serving both the Internet and the private network,
> and there's no "Oops, forgot up upload it." <smack on the side of the head>
>
> Miles
>
> At 08:32 PM 12/2/2001 -0500, Keith Kwasigroch wrote:
> >I have a W2k box setup with IIS and PHP.  It works fine, well almost.  I can
> >create a .php page and it works great.  But, when I edit that page, the old
> >page still shows up pubically.  The page is updated if I open it from within
> >the private network.  For instance:  www.domain.com displays old page, but
> >192.168.x.x displays updated page.
> >
> >????
> >
> >Thanks in advance for any help.
> >
> >
> >
> >--
> >PHP General Mailing List (http://www.php.net/)
> >To unsubscribe, e-mail: [EMAIL PROTECTED]
> >For additional commands, e-mail: [EMAIL PROTECTED]
> >To contact the list administrators, e-mail: [EMAIL PROTECTED]




-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to