【发布时间】:2015-10-16 15:01:20
【问题描述】:
我收到以下错误
“找不到指定的类:Session.php”
我有带 hmvc 的 codeigniter 3(在我尝试做 modules::run() 之前工作正常)。
这是我的欢迎控制器:
class Welcome extends MY_Controller
{
protected $data;
function __construct()
{
parent::__construct();
$this->load->model('welcome_model', 'model');
}
public function index()
{
modules::run('blog/cacat');
$this->data['client_ip'] = $this->clientIP();
$this->twig->display('welcome_message', $this->data);
}
}
【问题讨论】:
标签: codeigniter