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

前端 未结 16 1287
耶瑟儿~
耶瑟儿~ 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:26

    Adding to @jakentus answer, below is what worked for me:

    1. Change the file name in the models package to Logon_model.php (First letter upper case as @jakentus correctly said)

    2. Change the class name as same as file name i.e.

      class Logon_model extends CI_Model

    3. Change the name in the load method too as

      $this->load->model('Logon_model');

    Hope this helps. Happy coding. :)

提交回复
热议问题