Beefy Boxes and Bandwidth Generously Provided by pair Networks
good chemistry is complicated,
and a little bit messy -LW
 
PerlMonks  

Re: Value for session set in CGI::Session is undef

by VinsWorldcom (Prior)
on Apr 07, 2009 at 19:51 UTC ( [id://756128]=note: print w/replies, xml ) Need Help??


in reply to Value for session set in CGI::Session is undef

In your "main program", you call:

print Dumper($logged_in, $session->param('user'));

But, $session isn't defined. It is defined (with "my" and the the "new CGI::Session()" call in the subroutine) and not passed back.

Try doing the $session = new... call in the main program and passing both the $session and $user variables to the sub.

Replies are listed 'Best First'.
Re^2: Value for session set in CGI::Session is undef
by bradcathey (Prior) on Apr 07, 2009 at 21:32 UTC

    Every poster was correct pointing out that $session was not defined in my calling program. Duh!

    So, I tried this first:

    my $logged_in = write_session( $user ); my $session = CGI::Session->load(); print Dumper($logged_in, $session->param('user'));

    which I thought would be the proper way to do it, but ended up following your advice with:

    my $session = new CGI::Session(); my $logged_in = write_session( $session, $user ); print Dumper($logged_in, $session->param('user'));

    which did the trick. Thanks.

    —Brad
    "The important work of moving the world forward does not wait to be done by perfect men." George Eliot

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others goofing around in the Monastery: (4)
As of 2024-04-20 01:59 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found