这是我的麻烦:
致命错误:在第 89 行的 /home/u988704384/public_html/mutilmodules1/application/modules/default/controllers/IndexController.php 中找不到类“Default_Model_Category”
但是在本地主机中,它运行正常。
请帮我解决它。
在文件category.php 中:(/public_html/mutilmodules1/application/modules/default/models/)
<?php
class Default_Model_Category extends Zend_Db_Table
{
protected $_name = 'categories';
public function listinfo()
{
$data=$this->fetchall();
return $data;
}
}
在文件IndexController.php 中:(/public_html/mutilmodules1/application/modules/default/controllers/)
class IndexController extends Zend_Controller_Action
{
public function indexAction()
{
$category = new Default_Model_Category();
$this->view->entries = $category->listinfo();
}
}