Bootstrap: index.php // load configuration $config = new Zend_Config_Ini(‘./application/config.ini’, ‘general’); Zend::register(‘config’, $config); // setup database $db = Zend_Db::factory($config->db->adapter, $config->db->config->asArray()); Zend_Db_Table::setDefaultAdapter($db); // register the view we are going to use $view = new Zend_View(); $view->setScriptPath(‘./application/views’); Zend::register(‘view’, $view);