Zend Framework , Model Class not found in Module
问题 I've Created an application with these details : 1- zf create project MyApp 2- zf create module admin 3- zf create controller Index 1 admin MyApp/application/modules/admin/controllers/IndexController.php : class admin_IndexController extends Zend_Controller_Action { public function init() { error_reporting(E_ALL); ini_set('display_errors', 'On'); } public function indexAction() { $aa = new Admin_Model_DbTable_Posts(); } } application.ini : [production] phpSettings.display_startup_errors = 0