无法使用 nginx 在 Linux 18.04 中运行 Codeigniter



我的 Windows 服务器中有我的代码点火器应用程序。 它工作正常。但我试图迁移到 ubuntu 环境。为此,我正在使用WinSCP工具将我的代码点火器移动到我的Linux服务器。之后,当我尝试运行时,它显示错误

无法加载请求的类:会话。

我正在使用nginx,php 7.2和Ubuntu 18.04。

我已经尝试了给出的解决方案 无法加载请求的类:会话此类。我有 777 文件夹权限。

确保在autload.php中加载会话库

$autoload['libraries'] = array('session');

确保您的加密密钥设置为cofing.php

$config['encryption_key'] = 'any random sequence here'

确保使用大写字母加载您的库

$autoload['libraries'] = array('Session');

在配置文件中application/config/config.php将会话变量设置为以下值-

$config['sess_cookie_name']        = 'ci_session';
$config['sess_expiration']        = 7200;
$config['sess_expire_on_close']    = FALSE;
$config['sess_encrypt_cookie']    = FALSE;
$config['sess_use_database']    = FALSE;
$config['sess_table_name']        = 'ci_sessions';
$config['sess_match_ip']        = FALSE;
$config['sess_match_useragent']    = TRUE;
$config['sess_time_to_update']    = 300;

如果以上步骤都不能解决您的问题,请更换您的系统 文件夹,其中包含工作项目的系统文件夹或下载并执行 全新安装的 Codeigniter http://www.codeigniter.com/download。

相关内容

  • 没有找到相关文章

最新更新