CodeIgniter PHP Model Access “Unable to locate the model you have specified”

前端 未结 16 1301
耶瑟儿~
耶瑟儿~ 2020-11-30 02:10

I have been trying to load some models for this website I am building. However, for an unknown reason, it will bring the following error :

An Error Was Encou         


        
16条回答
  •  感动是毒
    2020-11-30 02:20

    I resolve this with this way:

    1. I rename file do Page_model.php
    2. Class name to Page_model extends...
    3. I call on autoload: $autoload['model'] = array('Page_model'=>'page');

    Works fine.. I hope help.

提交回复
热议问题