Form Auto Logout

Hi,

How to automatically logout the system when there’s no user activity in 10 minutes? And how to create logs for administrator…

Thanks
ishey

Re: Form Auto Logout

You can:

-Edit the PHP.ini and make adustments
-Set the Timeout in Applications/Settings in SC
-Setup a cookie for timeout:
$expirytime = time() + 3652460*60; // Change cookie expiry time here
ob_start();
setcookie(“acweb_UserName”,$_SESSION[‘g_username’], $expirytime); // Set up user name cookies
ob_end_flush();

As for the login, create a table and update it on login/logout.

Regards,
Scott.