On Mon, 14 Aug 2000, Matt Sergeant wrote:
> On Sun, 13 Aug 2000, Greg Cope wrote:
>
> > Apache->push_handlers("PerlTransHandler", \&transhandler);
>
> push_handlers is temporary, not permanent. And this line only gets
> executed once.
of course, if you wanted something like that, your module (if loaded at
startup) can do this:
{
package Apache::ReadConfig;
push @PerlTransHandler, join '::', __PACKAGE__, 'transhandler';
}
- my transhandler runs only once in each child ?!? Greg Cope
- Re: my transhandler runs only once in each child ?!? Matt Sergeant
- Re: my transhandler runs only once in each child ... Greg Cope
- Re: my transhandler runs only once in each child ... Doug MacEachern
- Re: my transhandler runs only once in each child ?!? Eric Cholet
