[PHP] ISP proxy caching major pain

2004-05-26 Thread strategies
Hi,
I know this is a perennial problem but believe me i have googled and
tried various solutions
I've encounter many bb isps doing proxy caching that i cant get around.
That is i want to completely avoid caching.
I have tried all the header stuff ,both php headers and html headers.
Nothing works.
The only thing that does work is the old random number at the end of the url.
Is there anything i can do - with apache maybe.

php 4.3.6
apache 2.0.46
whiteboxlinux 3.0

Thanks,
adrian murphy

Re: [PHP] ISP proxy caching major pain

2004-05-26 Thread Curt Zirzow
* Thus wrote strategies ([EMAIL PROTECTED]):
 Hi,
 I know this is a perennial problem but believe me i have googled and
 tried various solutions
 I've encounter many bb isps doing proxy caching that i cant get around.
 That is i want to completely avoid caching.
 I have tried all the header stuff ,both php headers and html headers.

What headers did you try?


Curt
-- 
I used to think I was indecisive, but now I'm not so sure.

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



Re: [PHP] ISP proxy caching major pain

2004-05-26 Thread strategies
 * Thus wrote strategies ([EMAIL PROTECTED]):
  Hi,
  I know this is a perennial problem but believe me i have googled and
  tried various solutions
  I've encounter many bb isps doing proxy caching that i cant get around.
  That is i want to completely avoid caching.
  I have tried all the header stuff ,both php headers and html headers.
 
 What headers did you try?
 
 
//php
header('Expires: Mon, 26 Jul 1997 05:00:00 GMT'); 
header('Cache-Control: no-store, no-cache, must-revalidate'); 
header('Cache-Control: post-check=0, pre-check=0', FALSE); 
header('Pragma: no-cache'); 

//html
meta http-equiv=Pragma content=no-cache
meta http-equiv=Expires content=0

adrian

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