I have Fatal Error
Fatal error: Class ‘Zend_Application_Bootstrap_Bootstrap’ not found in c:\wamp\www\MyZend\application\bootstrap.php on line 3
application.ini :::
[production]
phpSettings.display_startup_errors = 0
phpSettings.display_errors = 0
includePaths.library = “http://localhost/MyZend/application/../library”
bootstrap.path = “http://localhost/MyZend/application/Bootstrap.php”
bootstrap.class = “Bootstrap”
appnamespace = “Application”
resources.frontController.controllerDirectory = “http://localhost/MyZend/application/controllers”
resources.frontController.params.displayExceptions = 0
resources.layout.layoutPath = “http://localhost/MyZend/application/layouts/scripts/”
resources.view =
resources.db.adapter = “PDO_SQLITE”
resources.db.params.dbname = “http://localhost/MyZend/application/../data/db/guestbook.db”
[staging : production]
[testing : production]
phpSettings.display_startup_errors = 1
phpSettings.display_errors = 1
resources.db.adapter = “PDO_SQLITE”
resources.db.params.dbname = “http://localhost/MyZend/application/../data/db/guestbook-testing.db”
[development : production]
phpSettings.display_startup_errors = 1
phpSettings.display_errors = 1
resources.frontController.params.displayExceptions = 1
resources.db.adapter = “PDO_SQLITE”
resources.db.params.dbname = “http://localhost/MyZend/application/../data/db/guestbook-dev.db”
public/index.php :::
<?php
// Define path to application directory
defined(‘APPLICATION_PATH’)
|| define(‘APPLICATION_PATH’, realpath(dirname(FILE) . ‘/…/application’));
// Define application environment
defined(‘APPLICATION_ENV’)
|| define(‘APPLICATION_ENV’, (getenv(‘APPLICATION_ENV’) ? getenv(‘APPLICATION_ENV’) : ‘production’));
// Ensure library/ is on include_path
set_include_path(implode(PATH_SEPARATOR, array(
realpath(APPLICATION_PATH . ‘/…/library’),
get_include_path(),
)));
/** Zend_Application */
require_once ‘Zend/Application.php’;
// Create application, bootstrap, and run
$application = new Zend_Application(
APPLICATION_ENV,
APPLICATION_PATH . ‘/configs/application.ini’
);
$application->bootstrap()
->run();
include_path in the php.ini :::
include_path = “.;c:\php\includes;C:\wamp\www\MyZend\library”
library Address :::
C:\wamp\www\MyZend\library
where is my problem?