Re: [PHP] Disable all caching

2006-10-11 Thread tedd
At 11:17 AM -0400 10/10/06, Benjamin Adams wrote: I have a php (ver 4.x) script that is being cached. I have placed: but the page is still being cached. I'm not sure if its apache or the php. How can I disable all caching? is there something I can set in php.ini? (Mac OS X Server) Thanks

RE: [PHP] Disable all caching

2006-10-10 Thread Kristen G. Thorson
> -Original Message- > From: Brad Fuller [mailto:[EMAIL PROTECTED] > Sent: Tuesday, October 10, 2006 12:55 PM > To: php-general@lists.php.net > Subject: RE: [PHP] Disable all caching > > > I have a php (ver 4.x) script that is being cached. > > I have pl

Re: [PHP] Disable all caching

2006-10-10 Thread Richard Lynch
On Tue, October 10, 2006 10:17 am, Benjamin Adams wrote: > I have a php (ver 4.x) script that is being cached. > I have placed: > > but the page is still being cached. I'm not sure if its apache or > the php. How can I disable all caching? > is there something I can set in php.ini? All the head

RE: [PHP] Disable all caching

2006-10-10 Thread Brad Fuller
> I have a php (ver 4.x) script that is being cached. > I have placed: > > but the page is still being cached. I'm not sure if its apache or the > php. How can I disable all caching? > is there something I can set in php.ini? > > (Mac OS X Server) > > Thanks > > Ben > > -- > PHP General Maili

Re: [PHP] Disable all caching

2006-10-10 Thread Andrew Brampton
Caching occurs client side (ie in the webbrowser) not by apache or php unless you have setup something especially to do so... How are you testing that something stays cached? There is also a HTTP header you can make your PHP send to ask the page not to be cached. Looking at this page: http://uk