Session timeout

@kartiksyal - I see, in this case do like i suggested before, and additionally make sure you also set the 'allowAutoLogin' property to false in the same configuration file and 'authTimeout', like this:
PHP:
'customer' => array(
    'class'             => 'customer.components.web.auth.WebCustomer',
    'allowAutoLogin'    => false,
    'loginUrl'          => array('guest/index'),
    'returnUrl'         => array('dashboard/index'),
    'authTimeout'       => 900,
    'identityCookie'    => array(
        'httpOnly'      => true,
    )
),
 
Back
Top