[Catalyst] Problem storing session data
Peter Karman
peter at peknet.com
Tue Apr 1 14:26:00 BST 2008
On 04/01/2008 03:17 AM, Peter Sørensen wrote:
> Thanks for the suggestion. I tried but this does not solve my problem.
>
> I'm a little uncertain on where to set theese values. I've done this:
>
> _PACKAGE__->config->{session => {
> storage => '/tmp/session'.$$,
> cache_size => '10m',
> page_size => '256k',
> expires => 3600
> };
>
Should that instead be:
__PACKAGE__->config(
session => {
storage => '/tmp/session'.$$,
cache_size => '10m',
page_size => '256k',
expires => 3600
}
);
--
Peter Karman . peter at peknet.com . http://peknet.com/
More information about the Catalyst
mailing list