On a stock RH 9 system:
my %params = $r->args();
$r->print( join("",map {"$_ => $params{$_}"} keys(%params)), "");
and this
$r->print($r->args());
are producing the same output. Or in other words, the list context is
returning the entire QS while it used to return a hash in MP1. The docs
for v
I am using practical mod_perl (good book stas) book to come back up to
speed on mp after being away from perl and apache web development for a
few years. I am developing something new in mp2 and I am trying to set
cookies. The book's examples use Apache::Cookie and I tried to install
Apache::Co