Maybe I don't read very well input filter documentation.
I thought that if I have a module mod_a which is a input filter and a
mod_b which is a handler, it was possibile that mod_a reads the incoming
request and it decides that mod_b should be called or not.
Is it not possible?
Nick Kew ha scritto:
On Tue, 14 Aug 2007 12:44:55 +0200
Marco Spinetti <[EMAIL PROTECTED]> wrote:
So I'd like that my input filters, if the incoming request is not
ok, does an internal redirect to a static page, without calling my
handler.
Your input filter gets called when your handler reads input data.
Which is of course too late not to call your handler.
Whatever you're trying to do wants something other than a filter.