in reply to Re: CGI::Session not work
in thread CGI::Session not work

Thanks for the reply. Then, I've tried to installed it in /home/sdbadmin and change the related script.
#!/usr/bin/perl use lib '/home/sdbadmin/PerlModule'; use CGI::Session; my $session = new CGI::Session() or die CGI::Session->errstr; print "test end***\n";
However, the error message is the same. Could you pls help ? Is it meaning that installaion of CGI::Session crashed? Error:
<b>Use of uninitialized value in concatenation (.) or string at /home/ +sdbadmin/PerlModule/CGI/Session.pm line 128. Can't locate object method "generate_id" via package "CGI::Session::ID +::" (perhaps you forgot to load "CGI::Session::ID::"?) at /home/sdbad +min/PerlModule/CGI/Session.pm line 74. </b>

Replies are listed 'Best First'.
Re^3: CGI::Session not work
by Your Mother (Archbishop) on Dec 09, 2007 at 04:40 UTC

    Your installation looks bad/partial. Try from the CPAN shell -- [sudo] perl -MCPAN -e shell + install CGI::Session -- or from scratch with a fresh download.

      On Linux server, the CGI::Session is installed in the same way. The test script to create an object seems good. At the same time ,a file with name cgisess_804d321bba306173dbee4914069733b7 is created. So, I'm wondering why it is different. Does anybody encounter the same issue while creating an object of CGI::Session ?