On Tue, Oct 08, 2002 at 10:45:19AM +0200, Bastiaan Bakker wrote : 
> For a particular PHP installation I wanted to turn off all
> 'Cache-Control' headers, because 'cache_limiter=nocache' requires a user
> to explicitly resubmit form data every time and 'cache_limiter=private'
> would cache forms too often.
> However the current cache_limiter implementation does not have an option
> to do so. So I wrote a trivial patch against PHP 4.2.3 that adds value
> 'none' to session.cache_limiter. When set PHP replies do not include
> 'Cach-Control' or 'Pragma: nocache' headers, just a 'Last-Modified' one.
> 
> Please consider merging it, from browsing the mailing list I get the
> impression that other people may find the 'none' option useful too.

    Current CVS already supports this. From php.ini-* :

; Set to {nocache,private,public,} to determine HTTP caching aspects.
; or leave this empty to avoid sending anti-caching headers.
session.cache_limiter = nocache

    So, effectively, 'session.cache_limiter =' does what you want
    (if I understood you correctly).

    regards,
        - Markus

-- 
GnuPG Key: http://guru.josefine.at/~mfischer/C2272BD0.asc
<rei_> Derick, while ($xml) $ass->get_new_ideas();
<[James]> Markus: IE on_user_fart()????
-- People doesn't seem to like the new XHTML2 specs :) --

-- 
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to