When I upload my website on the server I m getting this error
unable to locate the model you have specified
but in localhost, it is working fine
When I upload my website on the server I m getting this error
unable to locate the model you have specified
but in localhost, it is working fine
Please state the error which you are facing with more details
Although check the following points
check whether you have loaded the model in controller. It is most preferable that you load model in your constructor
$this->load->model('Example_model');
if you have model in a specific folder then the path will be as following
$this->load->model('folder_name/Example_model');
Check the name on model class. The first letter should be capital
class Example_model extends CI_Model{ }