Beefy Boxes and Bandwidth Generously Provided by pair Networks
Pathologically Eclectic Rubbish Lister
 
PerlMonks  

Re^5: bug or curly bracket hell?

by Anonymous Monk
on Jan 24, 2023 at 23:40 UTC ( [id://11149853]=note: print w/replies, xml ) Need Help??


in reply to Re^4: bug or curly bracket hell?
in thread bug or curly bracket hell?

  my $PATHconf = '/etc/astguiclient.conf'; # declared and initialized

  my ( # declared with "my" but not initialized
  $PATHlogs,
  $VARserver_ip,
  $VARDB_server,
  $VARDB_database,
  $VARDB_user,
  $VARDB_pass,
  $VARDB_custom_user,
  $VARDB_custom_pass,
  $VARDB_port); 
You need to initialize your declared variables by defining their values:
  my $PATHconf       = '/etc/astguiclient.conf';
  my $PATHlogs       = '/path/to/logs';
  my $VARserver_ip   = '1.2.3.4';
  my $VARDB_server   = 'your_db_server';
  my $VARDB_database = 'name_of_database';
  my $VARDB_user     = 'the_db_username';
  my $VARDB_pass     = 'the_db_password';

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://11149853]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others scrutinizing the Monastery: (3)
As of 2024-03-19 04:51 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found