I am trying to upgrade Doctrine in my Zend application. I changed the line in my bootstrap file to point to Doctrine 1.2.3
// Autoload Doctrine ORM
require_once(LIBRARY_PATH.'/Doctrine-1.2.3/Doctrine.php');
spl_autoload_register(array('Doctrine', 'autoload'));
But I get an error when accessing the application in the browser;
Fatal error: Class 'BaseUser' not found in C:\xampplite\htdocs\SECGearbox\application\models\User.php on line 14.
Seems like the models can't be found.
I'm not quite sure where to proceed from here.
Appreciate the help.