Hi,

How are you creating the cookies?

Apache2::Cookie has the same interface as CGI pm (a method that takes
named parameters).

> When I do this, for the following cookies:
>    c1 => 'v1',
>    c2 => 'v2',
> 

Try this instead:

$c1 = Apache2::Cookie->new($r, -name  => 'c1', -value => 'v1');
$c2 = Apache2::Cookie->new($r, -name  => 'c2', -value => 'v2');

Regards,


-- 
Juan Jose Natera Abreu <[EMAIL PROTECTED]>

Reply via email to