in reply to Problems with CGI::Application::Plugin::Session

This:
COOKIE_PARAMS => { -expires => '+1h', -path => '../tmp', },
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).

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
    That's solved it. Thanks very much!