Unable to locate the model you have specified - CodeIgniter Issue

后端 未结 9 445
不知归路
不知归路 2021-01-14 03:55

I\'m getting an unable to locate model error.

$this->load->model(\'1/Gift_model\');

My model file name is gift_model.php

9条回答
  •  轻奢々
    轻奢々 (楼主)
    2021-01-14 04:19

    The problem is that your file name is all lowercase (gift_model.php) while you are loading Gift_model within CodeIgniter. Either change the file name to Gift_model.php or update your code accordingly.

提交回复
热议问题