FINALE: (or finally!) Re: Can't create custom config directives(long)

2000-06-10 Thread Rob Tanner

And the really GOOD NEWS!!!  When I upgraded to mod_perl 1.24, the problem 
went away.  It all works like it's suppossed to now.

--On 06/09/00 12:02:40 -0700 Doug MacEachern [EMAIL PROTECTED] wrote:

 On Thu, 8 Jun 2000, Rob Tanner wrote:

 MirrorWiseKeyFile', perhaps mis-spelled or defined by a module not
 included in the server configuration
 ...
  PerlModule  Apache::MirrorWise

 this is becoming a common problem, try this bandaid, instead of that
 PerlModule line:

 Perl
 delete $INC{'Apache/MirrorWise.pm'};
 require Apache::MirrorWise;
 /Perl



-- Rob

   _ _ _ _   __ _ _ _ _
  /\_\_\_\_\/\_\ /\_\_\_\_\_\
 /\/_/_/_/_/   /\/_/ \/_/_/_/_/_/  QUIDQUID LATINE DICTUM SIT,
/\/_/__\/_/ __/\/_//\/_/  PROFUNDUM VIDITUR
   /\/_/_/_/_/ /\_\  /\/_//\/_/
  /\/_/ \/_/  /\/_/_/\/_//\/_/ (Whatever is said in Latin
  \/_/  \/_/  \/_/_/_/_/ \/_/  appears profound)

  Rob Tanner
  McMinnville, Oregon
  [EMAIL PROTECTED]



Re: Can't create custom config directives (long)

2000-06-09 Thread Doug MacEachern

On Thu, 8 Jun 2000, Rob Tanner wrote:
 
 MirrorWiseKeyFile', perhaps mis-spelled or defined by a module not
 included in the server configuration
...
  PerlModule  Apache::MirrorWise

this is becoming a common problem, try this bandaid, instead of that
PerlModule line:

Perl
delete $INC{'Apache/MirrorWise.pm'};
require Apache::MirrorWise;
/Perl