This is how my bootstrap looks like
<?php
require_once('Zend/Loader.php');
Zend_Loader::registerAutoload();
$controller = Zend_Controller_Front::getInstance();
$controller->setControllerDirectory('../include/Controllers');
$controller->dispatch();
?>
Creating virtual host as:
<VirtualHost *:80>
ServerName mainevent
DocumentRoot "D:/apachefriends/xampp/htdocs/xampp/mainevent/public_html"
<Directory "D:/apachefriends/xampp/htdocs/xampp/mainevent/public_html">
AllowOverride None
Options All
</Directory>
php_value include_path ".;D:/apachefriends/xampp/htdocs/xampp/mainevent/include;D:/apachefriends/xampp/php/PEAR;D:/apachefriends/xampp/htdocs/xampp/mainevent/include/zend/library"
php_value magic_quotes_gpc off
php_value register_globals off
</VirtualHost>
And my directory listing are as follows:
D:\apachefriends\xampp\htdocs\xampp\mainevent -> Include, public_html, app_data, templates
D:\apachefriends\xampp\htdocs\xampp\mainevent\include -> Controllers, Zend Framework
D:\apachefriends\xampp\htdocs\xampp\mainevent\include\controllers -> Controller classes
D:\apachefriends\xampp\htdocs\xampp\mainevent\include\Zend -> Library
D:\apachefriends\xampp\htdocs\xampp\mainevent\include\Zend\library ->Zend-> all zend folders and classes
Sorry i have to be so lame breaking it down like this. Just that this seems to be the only way of giving concrete information on what i have set up on my side. thanks