20 June 2014

Increase Default Logout time of Vtiger

Today one of our client asked us to increase default Logout time of Vtiger, so here is a small chunk of code that you can add to increase it yourself

Open config.inc.php in root folder and add following code at top

ini_set("session.gc_maxlifetime", 3600);

The above code will increase default logout time to 1 Hour

No comments:

Post a Comment