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 (
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.
Thanks Mat - Explains everything. I though it might be something as
simple as
Eric Cholet wrote:
>
> >
> > Apache->push_handlers("PerlTransHandler", \&transhandler);
>
> this will trigger the handler for the first request. Nothing
> will trigger it for subsequent requests. If you want it to run
> for every request, why not just drop the push_handlers call
> and add PerlT
> Dear All
>
> I've a bug somewhere that I cannot appear to spot..
>
> I have writen parts of a transhandler to handle session's. It works in
> once in each child and then does not appear to be executed again.
>
> I've looked through The Guide and could not see anything there, nor in
> the 'Ap
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.
--
Fastnet Software Ltd. High Performance Web Specialists
Providing mod_perl, XML, Sybase and Oracle solutions
Dear All
I've a bug somewhere that I cannot appear to spot..
I have writen parts of a transhandler to handle session's. It works in
once in each child and then does not appear to be executed again.
I've looked through The Guide and could not see anything there, nor in
the 'Apache modules in Pe