0
Kohana:當我使用Auth模塊時,獲取下面提到的錯誤: 必須在auth配置中設置有效的哈希鍵。Kohana:Kohana中的Auth哈希鍵問題3.2
這是被稱爲代碼是:
public function hash($str)
{
if (! $this->_config['hash_method']) return $str;
if (! $this->_config['hash_key'])
throw new Kohana_Exception('A valid hash key must be set in your auth config.');
return hash_hmac($this->_config['hash_method'], $str, $this->_config['hash_key']);
}
在這裏,我可以看到,HASH_KEY不來正常,當我刪除此檢查一切正常。你能幫助理解這個問題嗎?我使用的是Auth :: instance() - > login(「userid」,「password」);我使用的是Auth :: instance()
你是否在你的配置中設置了散列鍵,就像它說的那樣? – zombor 2013-02-17 15:37:10
我們如何設置哈希鍵,你能指引我正確的方向嗎?此外,我使用Kohana活動記錄而不是ORM,因此我該如何設置用戶詳細信息的角色?任何可以引導的鏈接?提前致謝。 – 2013-02-17 18:53:47