我是Codeigniter的新手,目前我剛剛使用HMVC和ORM Datamapper版本1.8.2安裝Codeigniter 2.2.0。調用未定義的方法MY_Loader :: _ ci_load_library()
我敢肯定,我已經正確安裝了ORM,但是當我測試鏈接,它給我這個
Fatal error: Call to undefined method DM_Loader::_ci_load_library() in ...\application\third_party\MX\Loader.php on line 173
和,這裏面是什麼loader.php
if ($path === FALSE)
{
$this->_ci_load_library($library, $params, $object_name);
}
我肯定已經重命名一些在third_party/MX/Router.php
保護和已添加的代碼index.php
下面的一些代碼
/*
* --------------------------------------------------------------------
* LOAD THE BOOTSTRAP FILE
* --------------------------------------------------------------------
*
* And away we go...
*
*/
require_once APPPATH.'third_party/datamapper/bootstrap.php';
require_once BASEPATH.'core/CodeIgniter.php';
你的答案是我的啓示。謝謝。
能否請你在這裏看到的http://stackoverflow.com/questions/28927450/unable-to-load-libraries-when-using-ci-3-with-hmvc 也許你有錯verison HMVC – yAnTar
的請請按照現有答案中的步驟操作:[單擊此處](http://stackoverflow.com/a/39631967/4246397) –