> I have selected the "handler" way instead "filter". > The module set USER_VAR2 on http header, but not in conjunction with > PHP script.
PHP is often used as the handler. The handler is the module which generates the content, so there can be only one per request. If you are trying to run your module when PHP scripts were called, that definitely sounds like your module may not be a handler and should not pretend to be one. What exactly does your module do? -- Ray Morris supp...@bettercgi.com Strongbox - The next generation in site security: http://www.bettercgi.com/strongbox/ Throttlebox - Intelligent Bandwidth Control http://www.bettercgi.com/throttlebox/ Strongbox / Throttlebox affiliate program: http://www.bettercgi.com/affiliates/user/register.php On Mon, 6 Jun 2011 17:39:49 +0200 Maurizio Totti <maurizio.to...@gmail.com> wrote: > 2011/6/6 Sorin Manolache <sor...@gmail.com>: > > > > I think that an AP_FTYPE_RESOURCE filter is invoked _after_ the HTTP > > response headers have been sent to the client. > > > > Try > > AP_FTYPE_PROTOCOL - 1 > > instead of AP_FTYPE_RESOURCE. > > > Hi Sortin, > I have selected the "handler" way instead "filter". > The module set USER_VAR2 on http header, but not in conjunction with > PHP script. I will study better mod_headers to understand how it > works. Thanks! > > Regards