I tried ->handler in my configs, made no difference.
I was doing a 'require' in a startup script if that
makes any difference. Haven't seen this issue with
simillar code anywhere else..
Marty
--- Geoffrey Young <[EMAIL PROTECTED]> wrote:
>
> >
> > PerlTransHandler MyApp::MyIn
I've seen this problem and never got to the bottom of
it, on a redhat box with 5.8.3 (I think) and same
apache and mod_perl,
Marty
--- Andrew Green <[EMAIL PROTECTED]> wrote:
> Hi,
>
> I seem to have a bizarre problem with method
> handlers on my setup. I
> have a set of different handler
>>I'll give that a go and see. Is the following also kosher, then?
>>
>> $r->push_handlers(
>> PerlCleanupHandler => MyApp::MyInstall::Cleaner->handler
>> );
>
>
> sorry, no - you can't currently push a method handler like that. see the
>
> * method handler cached-CVs
Andrew Green wrote:
> On Wed, 02 Feb 2005 10:10:56 -0500, Geoffrey Young wrote:
>
>
>>PerlTransHandler MyApp::MyInstall::Dispatcher->handler
>>
>>and see if that helps.
>
>
> I'll give that a go and see. Is the following also kosher, then?
>
> $r->push_handlers(
> P
On Wed, 02 Feb 2005 10:10:56 -0500, Geoffrey Young wrote:
> PerlTransHandler MyApp::MyInstall::Dispatcher->handler
>
> and see if that helps.
I'll give that a go and see. Is the following also kosher, then?
$r->push_handlers(
PerlCleanupHandler => MyApp::MyInstall:
>
> PerlTransHandler MyApp::MyInstall::Dispatcher
make that
PerlTransHandler MyApp::MyInstall::Dispatcher->handler
and see if that helps. you should also be preloading via
PerlModule MyApp::MyInstall::Dispatcher
or in a startup.pl.
HTH
--Geoff
Hi,
I seem to have a bizarre problem with method handlers on my setup. I
have a set of different handlers, all of which are method handlers so
that I can easily inherit shared code across a collection of different
installations of my application on the same server.
The first handler to get in