controller中加载model,页面就出错
好奇怪我用的nginx服务器,以前都是好好的,但是今天在开发新程序时候,
发现只要load一个model:
$this->load->model('Account_model');
页面马上就会变成:
The page you are looking for is temporarily unavailable.
Please try again later.
太奇怪了。。。 account_model有错误吧 <?php
class Account_model extends Model {
function Account_model()
{
parent::Model();
}
}
/* End of file account.php */
/* Location: ./system/application/models/account.php */ account model是空的。。。没错啊 。。。
关键貌似是server错了。。。。 看起来是服务器有些问题吧,呵呵 把$this->load->model('Account_model');
改为:
$this->load->model('account_model');
试试呢
页:
[1]