Beefy Boxes and Bandwidth Generously Provided by pair Networks
There's more than one way to do things
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
And another one, if I may . . .

The code below are the relevant excerpts from the module we're building here. But this one is confusing me. This database conection was working for me before I commented it out of cgiapp_init() and tried to offload the work into a new dbh() routine.

The errors read: "Error executing class callback in init stage: Can't call method "config_file" on an undefined value at /home/hesco/anmc/sb/Registration/Registration/lib/Registration/WWW/RegForm.pm line 114." Line 114 is a part of the dbh() routine and reads: $self->config_file('/var/lib/cf/tbd/regform/Registration.ini');

So what here is the undefined value? Isn't $self defined? Why wouldn't it be passed from cgiapp_init? If not $self, then how is it that a hard coded path would be undefined?

I don't get it?

-- Hugh

package Registration::WWW::RegForm; use warnings; use strict; use diagnostics; use base 'CGI::Application'; use CGI::Application::Plugin::Config::Simple; . . . use CGI::FormBuilder; use CGI; . . . sub cgiapp_init { my $self = shift; $self->config_file('/var/lib/cf/tbd/regform/Registration.ini'); my $lib = $self->config_param('library'); push @INC, $lib; # use lib qw{/home/hesco/anmc/sb/Registration/Registration/lib}; require Registration::WWW::htmlgui; require Registration::DB; my $dbh = dbh(); # my $dbh = Registration::DB->connect($self->config_param('db_engine +'),$self->config_param('host_name'),$sel f->config_param('db_name'),$self->config_param('db_user'),$self->confi +g_param('db_pw')); my $result = auth_config($dbh); } sub dbh { my $self = shift; $self->config_file('/var/lib/cf/tbd/regform/Registration.ini'); my $dbh = Registration::DB->connect( $self->config_param('db_engine'), $self->config_param('host_name'), $self->config_param('db_name'), $self->config_param('db_user'), $self->config_param('db_pw') ); return $dbh; }

In reply to Need help untangling inheritance and scope in CGI::App module. by hesco

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others avoiding work at the Monastery: (7)
As of 2024-04-19 08:04 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found