遇到错误无法加载请求的类:身份验证

时间:2012-11-11 06:40:08

标签: php codeigniter continuous-integration xampp localhost

我正在我的localhost上处理我的应用程序,在尝试将我的IDE(表达式4转换为Eclipse)没有运气之后,我进入了我的索引页面并得到了这个错误

遇到错误 无法加载请求的类:身份验证

这个问题刚刚弹出,我不知道如何解决它。我尝试更改文件的用户权限,以便所有用户都可以访问但仍然精确。

任何人都可以帮我解决这个问题。

1 个答案:

答案 0 :(得分:1)

我解决了这个问题。

在我的主页上的函数构造中,我正在加载身份验证,但是已经删除了具有身份验证的文件夹,因此我的页面崩溃了。

<强>前

function __construct()     {

    parent::__construct();

    // Load the necessary stuff...
    $this->load->helper(array('language', 'url', 'form', 'account/ssl'));
    $this->load->library(array('account/authentication'));
    $this->load->model(array('account/account_model'));
    $this->lang->load(array('general'));
}

<强>后

function __construct()     {

父:: __构建体();

    // Load the necessary stuff...
    $this->load->helper(array('language', 'url', 'form'));

    $this->lang->load(array('general'));
}

我希望这有助于某人