Re: my transhandler runs only once in each child ?!?

2000-08-21 Thread Doug MacEachern
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

Re: my transhandler runs only once in each child ?!?

2000-08-14 Thread Matt Sergeant
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. -- Matt/ Fastnet Software Ltd. High Performance Web Specialists Providing mod_perl, XML, Sybase and Oracle

Re: my transhandler runs only once in each child ?!?

2000-08-14 Thread Eric Cholet
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

Re: my transhandler runs only once in each child ?!?

2000-08-14 Thread Greg Cope
Eric Cholet wrote: snippage 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

Re: my transhandler runs only once in each child ?!?

2000-08-14 Thread Greg Cope
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 this,

my transhandler runs only once in each child ?!?

2000-08-13 Thread Greg Cope
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