Codeigniter致命错误:在中找不到类“CI_Controller”

fjnneemd  于 2022-12-07  发布在  其他
关注(0)|答案(1)|浏览(113)

我被似乎很常见的问题所困扰。我已经看过很多这样的问题,所以我知道这在某种程度上与其他问题有关,但是我仍然不能弄清楚为什么我会得到这个错误
我有最新的密码引爆器
我的控制器类

class AddLog extends CI_Controller {

public function __construct(){
    parent::__construct();
}
public function occupierLog_add(){
    $this->load->view('LogViews/LogIncident_Occupier/AddLogIncident');     
}
public function add_log(){
    $newLog = $this->input->post(null, true);
    var_dump($newLog);
}

}
我的索引html

<html>
<head>
    <title>Hello</title>
</head>
<body>
   <a href="http://localhost/Concierge/application/controllers/Logs/AddLog.php/AddLog/occupierLog_add">Log Incident - Occupier</a>
</body>
</html>

所以你可以看到我的控制器AddLog在contollers/Logs目录中。在其中一个方法中,我试图调用位于views/LogViews/LogIncident_Occupier/...

euoag5mw

euoag5mw1#

您使用的配置项版本是什么?因为在2.0中,控制器超类是CI_Controller,而在配置项版本1中,控制器超类是Controller

相关问题