in reply to Re: Porting from cgi::session to using built in activeperl management
in thread Porting from cgi::session to using built in activeperl management
To clarify what BUU said, A) You should probably communicate more with your boss. B) lib.pm is likely what you want.
Say you can upload to C:\WWW\, make a directory called lib. Under lib\, add a directory, CGI, and Session.pm inside that. Now, before your code tries to pull in CGI::Session, do a use lib 'C:\WWW\lib';.
Actually, './' is always in @INC, so you could just make the CGI directory in the same folder as your scripts (say C:\WWW\HTDOCS\), but that could get messy.
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^3: Porting from cgi::session to using built in activeperl management
by shaolindoman (Acolyte) on Jul 12, 2004 at 20:05 UTC | |
Re^3: Porting from cgi::session to using built in activeperl management
by shaolindoman (Acolyte) on Jul 12, 2004 at 21:17 UTC | |
by meredith (Friar) on Jul 12, 2004 at 21:25 UTC | |
by jplindstrom (Monsignor) on Jul 13, 2004 at 02:13 UTC | |
by shaolindoman (Acolyte) on Jul 13, 2004 at 02:59 UTC | |
by jplindstrom (Monsignor) on Jul 13, 2004 at 14:30 UTC |