CGI.pm and PerlEx in ActivePerl 5.8.8 Build 820
by Philip Kuok other posts by this author
Jun 3 2007 8:44PM messages near this date
PerlEx - II6 - worker process - "invalid access to memory location"
|
PerlEx and ImageMagick (PerlMagick)
SERVICES I am trying to switch from Perl 5.6.1 to 5.8.8, and found that the passing
of param in 5.8.8 was only successful on the first time the script is run.
Searching through AtiveStates records I found one person described the exact
same problem I am facing:
http://bugs.activestate.com/show_bug.cgi?id=51968
Unfortunately there seemed to be no resolution. Is this really a bug or am I
missing a critical step?
The following is how I get the param from http submission, they worked in
Perl 5.6 but breaks in 5.8:
#
use CGI qw/:standard/;
my $q = new CGI;
$userName = $q-> param('username');
$password = $q-> param('password');
_______________________________________________
PerlEx mailing list
PerlEx@[...].com
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs
|