Gossamer Forum
Home : Products : Gossamer Links : Discussions :

Re: Log In for General Users

Quote Reply
Re: Log In for General Users In reply to
Hi,

You need to edit Links/Authenticate.pm around line 163. You'll see:

my $session_cookie = $IN->cookie ( -name => 's', -value => $session_id, -path => '/' );

You need to add:

-expires => '+1y'

to set the expiry date to one year ahead. Setting expiry times for close intervals (1 hour, 1 day etc) is not reliable due to how cookies are implemented.

Hope this helps,

Alex

--
Gossamer Threads Inc.
Subject Author Views Date
Thread Log In for General Users shane1800 2533 Mar 4, 2001, 8:04 PM
Post Re: Log In for General Users
Stealth 2437 Mar 5, 2001, 7:41 AM
Post Re: Log In for General Users
pugdog 2436 Mar 5, 2001, 8:37 AM
Thread Re: Log In for General Users
Alex 2432 Mar 5, 2001, 1:30 PM
Post Re: Log In for General Users
shane1800 2431 Mar 6, 2001, 3:31 PM