in reply to CGI::Application - Setting a Cookie and Redirecting
$self->header_props( -cookie => $cgi->cookie( -name => 'Application', -path => '/', -value => $session{ '_session_id' } ), -uri => $uri ); $self->header_type('redirect');
Also too, you may want to confirm the return HTTP headers from your application to ensure that indeed the cookie is being set and that the value therein is as intended.
|
|---|