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 . [EMAIL PROTECTED] . http://peknet.com/
_______________________________________________
List: [email protected]
Listinfo: http://lists.scsys.co.uk/cgi-bin/mailman/listinfo/catalyst
Searchable archive: http://www.mail-archive.com/[email protected]/
Dev site: http://dev.catalyst.perl.org/