vote up 1 vote down star
2

I'm trying to setup Zend Framework and Doctrine.

There is this previous discussion with ZF 1.8

That discussion doesn't take into account the AutoLoader / Bootstrap System.

If I generate an application skeleton with ./zh.sh how would I go about integrating Doctrine.

flag

2 Answers

vote up 3 vote down

Found a solution

http://pastie.org/481635 http://pastie.org/481633

Setup autoloader and plugin path in application/configs/application.ini:

autoloadernamespaces.0 = "Doctrine"

pluginpaths.ZendX_Doctrine_Application_Resource= "ZendX/Doctrine/Application/Resource"

Add paths to models and generated models in public/index.php

set_include_path(implode(PATH_SEPARATOR, array(
    realpath(APPLICATION_PATH . '/../library'),
    realpath(APPLICATION_PATH . '/models'),
    realpath(APPLICATION_PATH . '/models/generated'),
    get_include_path(),
)));

Save http://pastie.org/481633 to library/ZendX/Resource/Doctrine.php

link|flag
vote up 3 vote down

Matthew Weier O'Phinney has blogged about the issue

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.