> See the problem? MYFILTER is getting inserted before the cache is serving up > the content, but I really want it to go after (otherwise MYFILTER doesn't > see the body content). Is there a way around this aside from > modifying mod_cache?
at the moment, no - the hooking mechanism in apache just isn't designed for this type of thing. in apache 1.3 we could mess with the order in which modules ran, but not in 2.0. an alternative to modifying mod_cache would be to modify mod_perl. from the look of things, mod_cache needs to be in a specific place wrt other core modules, so it might be easier to just modify mod_perl. but that would affect the order of all perl filters, so... --Geoff