I'm having issues setting the admin session lifetime. Nothing I've done has worked this far. Any help with this would be greatly appreciated. What I have tried so far. Current Admin time out 28 minutes. Wanting to change to 86400.
Magento 1.9.4
System -> Configuration -> GENERAL -> Web -> Session Cookie Management
Cookie Lifetime 86400
Cookie Path /
Cookie Domain www.mysite.com
Use HTTP Only No
Cookie Restriction Mode No
------------------------------------------------------------------------
Stores -> Configuration -> ADVANCED -> Admin -> Security
Session Lifetime (seconds) 86400
-------------------------------------------------------------------------------
FTP Server Root Directory
php.ini file changed to "session.cache_expire = 86400"
--------------------------------------------------------------------------------
app\code\core\Mage\Core\Model\Session\Abstract\Varien.php
if (Mage::app()->getStore()->isAdmin())
{
$adminSessionLifetime = (int)Mage::getStoreConfig(’admin/security/session_cookie_lifetime’);
if ($adminSessionLifetime > 86400)
{
Mage::getSingleton(’core/cookie’)->setLifetime($adminSessionLifetime);
}
}