0

我继承了一个 CI v2.0.2 项目。

出于开发目的,该项目已移至另一个子域,并且该database.php文件已正确重新配置。

登录页面加载正常。但是,在尝试登录后,我收到来自 CI 的错误消息:

An Error Was Encountered 
Unable to load the requested class: encrypt

autoload.php中,databasesession库是自动加载的。该文件与主代码库中的文件相同。

如果我encrypt在上面的行中添加库,我根本看不到登录页面。

以下是加载登录页面的日志文件 -

DEBUG - 2012-10-21 04:15:22 --> Config Class Initialized
DEBUG - 2012-10-21 04:15:22 --> Hooks Class Initialized
DEBUG - 2012-10-21 04:15:22 --> Utf8 Class Initialized
DEBUG - 2012-10-21 04:15:22 --> UTF-8 Support Enabled
DEBUG - 2012-10-21 04:15:22 --> URI Class Initialized
DEBUG - 2012-10-21 04:15:22 --> Router Class Initialized
DEBUG - 2012-10-21 04:15:22 --> Output Class Initialized
DEBUG - 2012-10-21 04:15:22 --> Security Class Initialized
DEBUG - 2012-10-21 04:15:22 --> Input Class Initialized
DEBUG - 2012-10-21 04:15:22 --> XSS Filtering completed
DEBUG - 2012-10-21 04:15:22 --> XSS Filtering completed
DEBUG - 2012-10-21 04:15:22 --> XSS Filtering completed
DEBUG - 2012-10-21 04:15:22 --> Global POST and COOKIE data sanitized
DEBUG - 2012-10-21 04:15:22 --> Language Class Initialized
DEBUG - 2012-10-21 04:15:22 --> Loader Class Initialized
DEBUG - 2012-10-21 04:15:22 --> Helper loaded: url_helper
DEBUG - 2012-10-21 04:15:22 --> Database Driver Class Initialized
DEBUG - 2012-10-21 04:15:23 --> Session Class Initialized
DEBUG - 2012-10-21 04:15:23 --> Helper loaded: string_helper
DEBUG - 2012-10-21 04:15:23 --> Session routines successfully run
DEBUG - 2012-10-21 04:15:23 --> Controller Class Initialized
ERROR - 2012-10-21 04:15:23 --> Unable to load the requested class: encrypt

当从原始域使用登录时,登录工作正常。

我应该从哪里开始寻找任何指示?

4

1 回答 1

1

据推测,该错误是由以下原因之一引起的。

1)不知何故,库的文件名设法导致 CodeIgniter 无法找到该文件

2)可能文件在服务器上不存在,CodeIgniter 又一次找不到它。

3) 文件名可能与您在代码中引用的不同。

于 2012-10-21T10:36:12.653 回答