help me for solved problem whit 'Zend_Application_Bootstrap_Bootstrap'

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?

Oh yes it is. :slight_smile:

http://php.net/manual/en/function.defined.php

Yeah, I don’t know what was being thought of there.

Fatal error: Class ‘Zend_Application_Bootstrap_Bootstrap’ not found in c:\wamp\www\MyZend\application\bootstrap.php on line 3

The bootstrap issue appears to be commonly faced by people getting started with the framework, and is commonly due to the libraries not being pathed or included appropriately.

@AnthonySterling: Do you have any useful tips for the OP on how to get the zend classes loading appropriately?

what is My problem?

what do my work?

A first-stage approximation is that library files aren’t being correctly discovered.

You are more likely to find ZEND experts who can help you with this at the zend forums

I suggest that you try asking there instead.

I can have a go. :slight_smile:

Can you post your directory structure please? You have some relative paths in your config which don’t really match up, once we know how your directory structure is set-up we’ll see what we can do.

Anthony.