很多程序員在CI中使用session的時候,開啟自動加載session之後網站就報錯了,具體錯誤信息如下:In order to use the Session class you are required to set an encryption key
下面一起來看問題解決辦法。
提示信息說明:如果想用session類的話就必須要設置一個加密的密鑰!那就給設置一個吧,畢竟也是出於安全考慮。
打開application/config/config.php找到Encryption Key
復制代碼 代碼如下:
/*
|--------------------------------------------------------------------------
| Encryption Key
|--------------------------------------------------------------------------
| If you use the Encryption class or the Session class you
| MUST set an encryption key. See the user guide for info.
*/
$config['encryption_key'] = 'xxxxx';//在這裡加上密鑰即可正常!