Re: [Fwd: Help with @ISA]

2001-08-06 Thread Nouguier Olivier
Hi all, Don't we need to load the module before using it? With: PerlModule My::Module::Name Location /foo SetHandler perl-script PerlHandler My::Module::Name /Location ## OR Location /foo SetHandler perl-script

Re: [Fwd: Help with @ISA]

2001-08-06 Thread Stas Bekman
On Mon, 6 Aug 2001, Nouguier Olivier wrote: Hi all, Don't we need to load the module before using it? that's right, I assumed that it was preloaded already :) thanks for this note. With: PerlModule My::Module::Name Location /foo SetHandler perl-script

Re: [Fwd: Help with @ISA]

2001-08-04 Thread Stas Bekman
I don't understand why have sent your email as an attachement... how do you want us to quote it? Anyway: Location /foo SetHandler perl-script PerlHandler my::foo-cookie_check() /Location s/my::foo-cookie_check/my::foo::cookie_check/ - since it's not a method, $r is merely

[Fwd: Help with @ISA]

2001-08-03 Thread Rasoul Hajikhani
Hello there, I have a problem and I am not sure how to explain it... So please forgive me if I sound like a rookie, since I am that. I have a packge called: my::foo in which I have declared the following: package my::foo; @my::foo::ISA = qw( my::bar ); . . . sub handler { my $r =