OrangeHRM自动注销问题

时间:2016-05-11 16:21:22

标签: php orangehrm symfony-1.2

我正面临使用Symfony 1.2.4

构建的OrangeHRM的自动注销问题

我尝试过什么?

  1. 我尝试通过php.ini.htaccess

  2. 为SESSIONS分配最长时间
  3. 在评论以下代码/symfony/lib/vendor/symfony/lib/user/sfBasicSecurityUser.class.php

    后尝试
    public function initialize(sfEventDispatcher $dispatcher, sfStorage $storage, $options = array())
    {
    // initialize parent
    parent::initialize($dispatcher, $storage, $options);
    
    if (!array_key_exists('timeout', $this->options))
    {
      $this->options['timeout'] = 86400;
      //$this->options['timeout'] = 1800;
    }
    
    
    $this->options['timeout'] = 86400;
    //$this->options['timeout'] = 2 * 24 * 60 * 60;
    
    // force the max lifetime for session garbage collector to be greater than timeout
    /*if (ini_get('session.gc_maxlifetime') < $this->options['timeout'])
    {
      ini_set('session.gc_maxlifetime', $this->options['timeout']);
    }*/
    ini_set('session.gc_maxlifetime', $this->options['timeout']);
    
    // read data from storage
    $this->authenticated = $storage->read(self::AUTH_NAMESPACE);
    $this->credentials   = $storage->read(self::CREDENTIAL_NAMESPACE);
    $this->lastRequest   = $storage->read(self::LAST_REQUEST_NAMESPACE);
    
    if (null === $this->authenticated)
    {
      $this->authenticated = false;
      $this->credentials   = array();
    }
    else
    {
      // Automatic logout logged in user if no request within timeout parameter seconds
      $timeout = $this->options['timeout'];
      if (false !== $timeout && null !== $this->lastRequest && time() - $this->lastRequest >= $timeout)
      {
        if ($this->options['logging'])
        {
          $this->dispatcher->notify(new sfEvent($this, 'application.log', array('Automatic user logout due to timeout')));
        }
    
        $this->setTimedOut();
        $this->setAuthenticated(false);
      }
    }
    
    $this->lastRequest = time();
    

    }

  4. 尝试手动设置$_SESSION['symfony/user/sfUser/lastRequest']

  5. 尝试通过AJAX发送请求来保持有效。

  6. 尝试增加位于YML的{​​{1}}设置文件的会话时间

    .../symfony/apps/orangehrm/config/factories.yml
  7. 最终结果

    以上所有技术都失败了。

2 个答案:

答案 0 :(得分:0)

首先,您不应该触及供应商目录中的文件!

在symfony应用程序中修改会话生存期的正确方法是通过config.yml文件。 See this question for reference

答案 1 :(得分:0)

即使这有点晚,这也可以帮助您扩展会话超时值。此设置位于.../symfony/apps/orangehrm/config/factories.yml文件中。

在那里你会看到以下设置,

all:
  routing:
    class: ohrmPatternRouting
    param:
      generate_shortest_url:            true
      extra_parameters_as_query_string: true
  storage:
    class: sfSessionStorage
    param:
      session_name: PHPSESSID
      session_cookie_secure: true
      session_cache_limiter: nocache
  user:
     class: myUser
     param:
       timeout:         1800 #change this value to change the session timeout interval
       logging:         %SF_LOGGING_ENABLED%
       use_flash:       true
       default_culture: %SF_DEFAULT_CULTURE%

您应更改的相关值是timeout参数。默认值为1800秒(30分钟)。如果您在开发环境中,请执行symfony clear cache命令(在终端中进入symfony文件夹并执行./symfony cc)以使其正常工作。希望这有帮助!