in reply to Problems with CGI::Application::Plugin::Session
messes it up for you. The cookie path param pertains to the URL of the request, and so it's not sent back to your app (since /cgi-bin doesn't fall under ../tmp).COOKIE_PARAMS => { -expires => '+1h', -path => '../tmp', },
Try leaving it out until you need it:
COOKIE_PARAMS => { -expires => '+1h', },
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Problems with CGI::Application::Plugin::Session
by lsteele (Initiate) on Oct 26, 2007 at 16:01 UTC |