首先我是新手。我在我的 wamp 服务器中成功安装了 zend 框架。我的包含路径如下:
include_path = ".;E:\wamp\bin\php\zend_framework\library"
我创建了一个项目名称“mehedi”。但是当我浏览到 mehedi/application/ 目录中的 Bootstrap.php 文件时,它显示以下错误:
Fatal error: Class 'Zend_Application_Bootstrap_Bootstrap' not found in E:\wamp`\www\mehedi\application\Bootstrap.php on line 4`
当我浏览到除 mehedi/public/index.php 之外的其他 php 文件时,它会显示一些致命错误。
一切正常还是我错过了一些重要的事情。
这是我的 mehedi/application/configs/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
[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