My PHP script depends on being able to read the value of the If-Modified-Since header (yes, I know how to do this).

It worked correctly when I used PHP as mod_php, but now that I've switched to suPHP (CGI), it appears Apache itself handles requests that contain this header, without forwarding them to PHP at all.

This is silly, because Apache can't possibly know when my dynamically generated CSS file (that is what my script makes) is changed. How can I discipline Apache in this regard?

link|improve this question

73% accept rate
Did you try mod_suphp? – The Doctor What Dec 30 '09 at 15:21
You need to tell us more about the headers you sending. Most likely mod_cache is caching your response for you because you are sending headers that say it can. – The Doctor What Dec 30 '09 at 15:24
feedback

1 Answer

It's located in the variable $_SERVER['HTTP_IF_MODIFIED_SINCE'].

I use it in a script, along with fun stuff like HTTP_IF_MODIFIED_SINCE. ;-)

Ciao!

link|improve this answer
I know that, but Apache does not call PHP at all. – Bart van Heukelom Dec 22 '09 at 0:11
You mean you get the raw PHP code? – The Doctor What Dec 22 '09 at 18:50
No, it sends back the output it has in it's own cache. – Bart van Heukelom Dec 31 '09 at 18:14
"it" being apache? I don't think apache caches things unless you have mod proxy setup. Are you sure it isn't caching in the browser? Can you reproduce this behavior using curl or wget? – The Doctor What Jan 5 '10 at 17:42
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.