2012-06-10 58 views
0

我是ZendFramework中的新成员。我正在使用windowsXP和xampp.I准备使用ZendFramework构建一个小应用程序。但是我得到了下面的错误。使用ZendFramework构建应用程序

Fatal error: Uncaught exception 'Zend_Db_Table_Exception' with message 'No adapter found for Users' in E:\xampp\php\ZendFramework\library\Zend\Db\Table\Abstract.php:755 
Stack trace: 
#0 E:\xampp\php\ZendFramework\library\Zend\Db\Table\Abstract.php(739): Zend_Db_Table_Abstract->_setupDatabaseAdapter() 
#1 E:\xampp\php\ZendFramework\library\Zend\Db\Table\Abstract.php(268): Zend_Db_Table_Abstract->_setup() 
#2 E:\xampp\php\ZendFramework\library\Zend\Db\Table.php(77): Zend_Db_Table_Abstract->__construct(Array) 
#3 E:\xampp\htdocs\testproject\application\controllers\IndexController.php(7): Zend_Db_Table->__construct() 
#4 E:\xampp\php\ZendFramework\library\Zend\Controller\Action.php(516): IndexController->indexAction() 
#5 E:\xampp\php\ZendFramework\library\Zend\Controller\Dispatcher\Standard.php(295): Zend_Controller_Action->dispatch('indexAction') 
#6 E:\xampp\php\ZendFramework\library\Zend\Controller\Front.php(954): Zend_Controller_Dispatcher_Standard->dispatch(Object(Zend_Controller_Request_Http), Object(Zend_Controller_Response_ in E:\xampp\php\ZendFramework\library\Zend\Db\Table\Abstract.php on line 755 

任何人都可以说什么是解决方案?

感谢

[production] 
phpSettings.display_startup_errors = 0 
phpSettings.display_errors = 0 
includePaths.library = APPLICATION_PATH "/../library" 
bootstrap.path = APPLICATION_PATH "/Bootstrap.php" 
bootstrap.class = "Bootstrap" 
appnamespace = "Application" 
resources.frontController.controllerDirectory = APPLICATION_PATH "/controllers" 
resources.frontController.params.displayExceptions = 0 

[staging : production] 

[testing : production] 
phpSettings.display_startup_errors = 1 
phpSettings.display_errors = 1 

[development : production] 
phpSettings.display_startup_errors = 1 
phpSettings.display_errors = 1 
resources.frontController.params.displayExceptions = 1 

这些的application.ini文件的内容。

<?php 

class IndexController extends Zend_Controller_Action 
{ 
    public function indexAction() 
    { 
     $users = new Users(); 
     $data = $users->fetchAll($users->select()); 
     $this->view->data = $data; 
    } 
} 

?> 

这些IndexController.php的内容文件

@RockyFord

你的意思的application.ini文件应低于喜欢?

[production] 
    phpSettings.display_startup_errors = 0 
    phpSettings.display_errors = 0 
    includePaths.library = APPLICATION_PATH "/../library" 
    bootstrap.path = APPLICATION_PATH "/Bootstrap.php" 
    bootstrap.class = "Bootstrap" 
    appnamespace = "Application" 
    resources.frontController.controllerDirectory = APPLICATION_PATH "/controllers" 
    resources.frontController.params.displayExceptions = 0 

    resources.db.adapter = "pdo_Mysql" //PDO is best option, other adapters are available. 
    resources.db.params.username = "your_username" 
    resources.db.params.password = "your_password" 
    resources.db.params.dbname = "your_database_name" 
    resources.db.isDefaultTableAdapter = true //this line is optional but recommended. 


    [staging : production] 

    [testing : production] 
    phpSettings.display_startup_errors = 1 
    phpSettings.display_errors = 1 

    [development : production] 
    phpSettings.display_startup_errors = 1 
    phpSettings.display_errors = 1 
    resources.frontController.params.displayExceptions = 1 
+0

你可以发布你的application.ini吗? (**没有任何敏感信息,如密码当然) –

+0

也许,也可以在'IndexController'中发布实例化Zend_Db_Table对象的行。 –

+0

缺少Zend_Db_Table的数据库配置? – opHASnoNAME

回答

2

假设您正在使用mysql,将这些行添加到生产部分的application.ini中。

resources.db.adapter = "pdo_Mysql" //PDO is best option, other adapters are available. 
resources.db.params.username = "your_username" 
resources.db.params.password = "your_password" 
resources.db.params.dbname = "your_database_name" 
resources.db.isDefaultTableAdapter = true //this line is optional but recommended. 
+0

@Michael Irey, 我是ZendFramework中的新成员。我听不懂你的话。 – Foysal