本文主要是介绍CodeIgniter中Unable to locate the model you have specified:*_model解决方法,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
开发环境使用的windows, 部署到测试环境后使用的是Linux。
解决了url重写(去掉index.php)的问题后,点击其它页面出现
Unable to locate the model you have specified:*_model
的问题。
在codeigniter论坛搜索了一下,问题是由于windows和linux对文件名的处理不一致导致,
windows下文件名是不区分大小写的,但是Linux是严格区分大小写的。
解决办法:
修改所有的model:
1. 文件名全部小写,不能出现大小写混排 (all filenames need to be lowercase)
2. class model_name , model_name 只有第一个字母是大写,其余一律小写
修改后即可解决 Unable to locate the model you have specified:*_model 的问题
reference: http://ellislab.com/forums/viewthread/65923/#324059
这篇关于CodeIgniter中Unable to locate the model you have specified:*_model解决方法的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!