Re: Can't create custom configuration directives

2000-06-04 Thread Rob Tanner
Matt Sergeant wrote: > > On Sun, 4 Jun 2000, Rob Tanner wrote: > > > > That you define $VERSION before the bootstrap line. > > > > > > > As below: > > > > $VERSION = '0.9b'; > > > > if ( $ENV{'MOD_PERL'} ) { > > no strict; > > @ISA = qw(DynaLoader); > > __PACKAGE__->bootstrap($VERSION); >

Re: Can't create custom configuration directives

2000-06-04 Thread Matt Sergeant
On Sun, 4 Jun 2000, Rob Tanner wrote: > > That you define $VERSION before the bootstrap line. > > > > As below: > > $VERSION = '0.9b'; > > if ( $ENV{'MOD_PERL'} ) { > no strict; > @ISA = qw(DynaLoader); > __PACKAGE__->bootstrap($VERSION); > } That might represent a problem. $VERSION is

Re: Can't create custom configuration directives

2000-06-04 Thread Rob Tanner
Matt Sergeant wrote: > > I've snipped the lengthy explanation. Here's a few things you can check: > > There's no old version of your module in the ordinary perl lib directory, > rather than the i386-foo/ directory. Interesting thought, so I checked it. My module is actually under the Apache se

Re: Can't create custom configuration directives

2000-06-04 Thread Matt Sergeant
I've snipped the lengthy explanation. Here's a few things you can check: There's no old version of your module in the ordinary perl lib directory, rather than the i386-foo/ directory. That you use DynaLoader. That you define $VERSION before the bootstrap line. -- Fastnet Software Ltd. High

Can't create custom configuration directives

2000-06-03 Thread Rob Tanner
Hi all, I'm trying to create several custom configuration directives, and have pretty mucg followed the eample in the eagle book (pp 387-394). I start Apache up -- get no configuration complaints and apachectl comes back saying Apache started. The info messages in the error log, however, indica