Re: [Phplib-users] timeout
Brought to you by:
nhruby,
richardarcher
From: Joe S. <jo...@be...> - 2002-09-23 14:00:55
|
On Mon, Sep 23, 2002 at 03:27:34AM +0200, Kacper Kruszewski wrote: > hello. > > i wanted to provide maximum security to my webpage, > so i have used Example_Challenge_Crypt_Auth. > Almost all is working fine... > there is only one problem - timeout. > what am i supposed to do if i would like to have > let's say 10 minutes timeout? > and of course, when someone open any page, this > timeout should be restarted to 10 minutes again. > var $lifetime = 10; in your definition of Example_Challenge_Crypt_Auth. class Example_Challenge_Auth extends Auth { var $classname = "Example_Challenge_Auth"; var $lifetime = 10; See: http://www.sanisoft.com/phplib/manual/auth.php#Instance%20variables Joe > please help, > GHOST > |