|
so i've identified it the problem stems from line:
use Session;
is there some known problem w/ this line?
for instance this errors out:
#!/usr/bin/perl
use Session;
print "Content-type:text/html\n\n";
print "hi";
exit;
but this doesn't:
#!/usr/bin/perl
print "Content-type:text/html\n\n";
print "hi";
exit;
|