No solution but a work-around is to set the value to something and set -expires=>0, which should delete the cookie from the browser.

Blank values are contrary to the RFC anyway so you probably shouldn't be trying to use them.

cheers
John


Ted wrote:

Blank value in cookie causes server to die with a Segmentation Fault.

my $value = '';
my $cookie = Apache2::Cookie->new($r,
               -name => 'test_cookie',
               -value => $value,
               -path => '/',
             );
$cookie->bake($r)




Reply via email to