当前位置:首页 > PHP教程 > PHP常见问题

CI框架自动加载session出现报错的解决办法

很多程序员在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';//在这里加上密钥即可正常!


【说明】本文章由站长整理发布,文章内容不代表本站观点,如文中有侵权行为,请与本站客服联系(QQ:)!