You could try it programatically:
<?php
// Date in the past
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
// always modified
header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT");
// HTTP/1.1
header("Cache-Control: no-store, no-cache, must-revalidate");
header("Cache-Control: post-check=0, pre-check=0", false);
// HTTP/1.0
header("Pragma: no-cache");
?>
-Bruno
Kurtis Kopf disse:
> Hmm, weird... I'm putting
>
> <meta http-equiv="Cache-Control" content="no-cache">
> <meta http-equiv="Pragma" content="no-cache">
>
> in the pages...
>
> -Kurtis
>
> Bruno G. Albuquerque wrote:
>
>>
>>
>>Yes, you are behind a passive proxy (i.e. even without havingone
>> configured, you are being tunneled through one) and it is having
>> problems picking up the updates on the site. Either it is plain broken
>> (the poxy) or the PHP script in the site is not sending all "no-cache"
>> type directives it should.
>>
>>-Bruno
>>
>>