in reply to CGI::Application Getting Started Error Perl lib

No, the problem is that WidgetView.pm is not returning a true value. (as Perl correctly reported :-)

A file loaded with require (or equivalently, use) needs to return a true value. It's conventional to end the file with a line like:

1;
to guarantee this. Take a look in the file and make sure it has that.

Replies are listed 'Best First'.
Re^2: CGI::Application Getting Started Error Perl lib
by soldierdog (Initiate) on May 16, 2005 at 14:45 UTC
    Have I told you all you folks just how much I appreciate everyone here. Thanks again for 1: Helping for for 2: Straightening out my thinking process through pointing out what perl is reporting and not my own extrapolations. It works fine now.