hesco has asked for the wisdom of the Perl Monks concerning the following question:
The DistroPrsRlsAuth.pm file includes, in toto:hesco@marcus2:~/sandbox/DistroPrsRls$ perl -wc lib/DistroPrsRls.pm Base class package "DistroPrsRlsAuth" is empty. (Perhaps you need to 'use' the module which defines that package f +irst.) at lib/DistroPrsRls.pm line 5 BEGIN failed--compilation aborted at lib/DistroPrsRls.pm line 5.
And the first few lines of DistroPrsRls.pm read:package DistroPrsRlsAuth; use base 'CGI::Application'; sub cgiapp_prerun { my $self = shift; # add run-level specific authorization checks here return; } 1;
This is my first spin with CGI::Application. All help is appreciated. Thanks.package DistroPrsRls; use Carp; # use base 'CGI::Application'; use base 'DistroPrsRlsAuth'; sub setup {
-- Hugh
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Decoding Error Messages
by kwaping (Priest) on Feb 10, 2006 at 23:14 UTC | |
|
Re: Decoding Error Messages
by samtregar (Abbot) on Feb 10, 2006 at 23:37 UTC | |
|
Re: Decoding Error Messages
by hesco (Deacon) on Feb 11, 2006 at 00:16 UTC | |
|
Re: Decoding Error Messages
by mda2 (Hermit) on Feb 10, 2006 at 23:58 UTC | |
by ikegami (Patriarch) on Feb 11, 2006 at 00:40 UTC |