Re: [Re: [Re: again - more then one PerlTransHandler]]

1999-12-22 Thread Andrei A. Voropaev
he "native" handler will be called only if last Perl handler returned DECLINED. Andrei On Tue, Dec 21, 1999 at 01:45:40PM -0800, Doug MacEachern wrote: At least that's what I thought ! In fact now Apache lets me use more then one PerlTransHandler, but it doesn't care of what

Re: [Re: [Re: again - more then one PerlTransHandler]]

1999-12-21 Thread Doug MacEachern
At least that's what I thought ! In fact now Apache lets me use more then one PerlTransHandler, but it doesn't care of what is the return codes are!!! Even I return OK, it still calls next registered handlers. Really weird! mod_perl does care. but, mod_perl stacked handlers

Re: [Re: [Re: again - more then one PerlTransHandler]]

1999-12-19 Thread Evgenii Bazarov
Thanks for the answers! I was using RedHat rpm and it was giving the problem as it was suggested. After I built mod_perl with apache (mod_perl 1.21, apache 1.3.9, the problem was resolved. At least that's what I thought ! In fact now Apache lets me use more then one PerlTransHandler

Re: [Re: more then one PerlTransHandler]

1999-12-16 Thread Evgenii Bazarov
ant others to work then return DECLINED Andrei On Sun, Dec 12, 1999 at 07:46:01AM -0700, Evgenii Bazarov wrote: Hi! I tried to set more then one PerlTransHandler but if I specify both on the same line, Apache says "syntax error", otherwise it see only the last one. Apache 1.3.6 on

Re: [Re: again - more then one PerlTransHandler]

1999-12-16 Thread Evgenii Bazarov
Waa!!! So far nobody who answered even doubted that it should be possible to have more then one PerlTransHandler. The "Eagle" book also says that it should be possible. People suggested that either my mod_perl built with wrong flags or I messed up return codes OK/DECLINED (whic

Re: [Re: again - more then one PerlTransHandler]

1999-12-16 Thread Eric Cholet
On Thu, 16 Dec 1999, you wrote: Waa!!! So far nobody who answered even doubted that it should be possible to have more then one PerlTransHandler. The "Eagle" book also says that it should be possible. People suggested that either my mod_perl built with wrong flags or I messed

RE: again - more then one PerlTransHandler

1999-12-15 Thread Geoffrey Young
H --Geoff -Original Message- From: Evgenii Bazarov [mailto:[EMAIL PROTECTED]] Sent: Monday, December 13, 1999 8:42 AM To: [EMAIL PROTECTED] Subject: again - more then one PerlTransHandler Hi everybody, Sorry for the poor wording of my question. Once again: I am trying to install an

Re: again - more then one PerlTransHandler

1999-12-15 Thread Andrei A. Voropaev
ranslation::handler In this case, only second handler gets invoked. Am I missing something?!!! Evg Hi! I tried to set more then one PerlTransHandler but if I specify both on the same line, Apache says "syntax error", o

Re: again - more then one PerlTransHandler

1999-12-15 Thread Jay J
- Original Message - From: "Andrei A. Voropaev" [EMAIL PROTECTED] To: "Evgenii Bazarov" [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Wednesday, December 15, 1999 10:18 AM Subject: Re: again - more then one PerlTransHandler It works perfectly well for me. I have

Re: more then one PerlTransHandler

1999-12-14 Thread Doug MacEachern
On 12 Dec 1999, Evgenii Bazarov wrote: Hi! I tried to set more then one PerlTransHandler but if I specify both on the same line, Apache says "syntax error", otherwise it see only the last one. make sure you have built the server with at least PERL_STACKED_HANDLERS=1 or EV

again - more then one PerlTransHandler

1999-12-14 Thread Evgenii Bazarov
ied to put two lines in config: PerlTransHandler SimpleTranslation::handler PerlTransHandler FancyTranslation::handler In this case, only second handler gets invoked. Am I missing something?!!! Evg Hi! I tried to set more then one PerlTransHandle

more then one PerlTransHandler

1999-12-12 Thread Evgenii Bazarov
Hi! I tried to set more then one PerlTransHandler but if I specify both on the same line, Apache says "syntax error", otherwise it see only the last one. Apache 1.3.6 on Linux with mod_perl 1.19 According to "Apache Modules" book it should be possible... Any advice will b