in reply to Re^3: Porting from cgi::session to using built in activeperl management
in thread Porting from cgi::session to using built in activeperl management
Keep the "use lib" line. It tells perl where it can find modules. So after that line in the script, perl looks under C:/lib/, and if it looks for CGI::Session, it will look for the file C:/lib/CGI/Session.pm
CGI::Session uses a few more internal classes besides the CGI/Session.pm file. I suggest you download the entire module from CPAN. When you unzip the file you'll find the Session directory somewhere. That directory and it's contents (including subdirs) is what you should upload to the "/lib/CGI" directory in your example.
Hope That Helps,
/J
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^5: Porting from cgi::session to using built in activeperl management
by shaolindoman (Acolyte) on Jul 13, 2004 at 02:59 UTC | |
by jplindstrom (Monsignor) on Jul 13, 2004 at 14:30 UTC |