会话在cakePHP 2.9中很快到期

时间:2017-07-25 07:35:59

标签: php cakephp cakephp-2.0 cakephp-2.9

我在config.php文件中尝试了很多选项但没有成功。 这里的选项。 第一个:

 Configure::write('Session', array(
    'defaults' => 'php',
            'timeout' => 31556926, // The session will timeout after 30 minutes of inactivity
            'cookieTimeout' => 31556926,
            'ini' => array(
               'session.gc_maxlifetime' => 31556926 // 36 hours
             )
));
第二个:

 Configure::write('Session', array(
    'defaults' => 'php',
    'Session.timeout' => 36000
 ));

请让我知道,因为会议在工作中途到期!

1 个答案:

答案 0 :(得分:0)

在(app / Config / core.php)

中使用以下代码
 Configure::write('Session', array(
        'defaults' => 'cake',
        'timeout' => 30, // The session will timeout after 30 minutes of inactivity
        'cookieTimeout' => 1440, // The session cookie will live for at most 24 hours, this does not effect session timeouts
        'checkAgent' => false,
        'autoRegenerate' => true, // causes the session expiration time to reset on each page load
    ));