> How create corect expiration by time.
> Тоесть There is system of monitoring and there is necessary do so if user
> did not update any page during 30 mines, that force its once again do
logon.
>
> That have charge of time lifes of session?
> How check this variable and set this variable in runtime?
>

One possibilites would be to use Embperl session management. If you have
setup sessions correctly, you can update a time everytime a page is
requested and redirect to a login if the time difference is greater then 30
minutes. e.g.

if ($udat{lastaccess} + 1800 < time)
    {
    dologin () ;
    }
else
    {
    $udat{lastaccess} = time ;
    }

Gerald

-------------------------------------------------------------
Gerald Richter    ecos electronic communication services gmbh
Internetconnect * Webserver/-design/-datenbanken * Consulting

Post:       Tulpenstrasse 5         D-55276 Dienheim b. Mainz
E-Mail:     [EMAIL PROTECTED]         Voice:    +49 6133 925131
WWW:        http://www.ecos.de      Fax:      +49 6133 925152
-------------------------------------------------------------



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to