Codeigniter致命错误:找不到类'CI_Controller'

时间:2013-10-25 12:37:06

标签: php codeigniter codeigniter-classloader

我被困在似乎很常见的事情上。我已经看到了很多这样的问题,所以我知道这在某种程度上与其他人有关,但是我仍然无法弄清楚为什么我会收到这个错误。我有最新的codeigniter
我的控制器类

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>

因此,您可以看到My Controller AddLog位于contollers / Logs目录中。在其中一个方法我试图调用位于views / LogViews / LogIncident_Occupier /...

中的视图

1 个答案:

答案 0 :(得分:2)

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