Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我在 Codeigniter 中从 autoload.php 自动加载会话库时,浏览器中显示以下错误:“为了使用 Session 类,您需要在配置文件中设置加密密钥。”
如何解决这个问题?
转到您的 config.php
搜索这个
$config['encryption_key'] = '';
并将其更改为
$config['encryption_key'] = 'something';
其中某物是您选择的加密密钥