Hello all. Well, I'm working on login/session tracking and decided to use CGI::Session. I'm working in a windows enviroment and seem to be generating some problems getting the initial session started (hence I'm very inexperienced). Anyways, here is my code along with the errors that are generated when I try to run it.
use strict;
use CGI qw(:standard);
use CGI::Session;
my $cgi = new CGI();
my $session = new CGI::Session(undef, undef, {Directory=>'\tmp'});
I get this error:
Can't locate DB_File.pm in @INC (@INC contains: C:/Perl/lib C:/Perl/si
+te/lib .)
at C:/Perl/site/lib/CGI/Session/DB_File.pm line 12.
BEGIN failed--compilation aborted at C:/Perl/site/lib/CGI/Session/DB_F
+ile.pm lin
e 12.
I've also trying running it as
my $session = new CGI::Session("driver:FILE", undef, Directory=>File::
+Spec->tmpdir);
and had the same errors. I have File::Spec installed and I have created the directory /tmp. What am I missing here or not understanding? Thanks.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.