View Single Post
  #4  
Old 09-29-2012, 09:22 PM
jaequery jaequery is offline
Member
 
Join Date: Jan 2012
Posts: 15
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;
Reply With Quote