can anybody help me how to nice integrate doctrine 2.0 into ZF 1.10? I found some application resources, but there was no complete solution. Many thanks

link|improve this question

78% accept rate
feedback

3 Answers

up vote 5 down vote accepted

You may try to setup it like described in this blog post about ZF & Doctrine 2.

Hope this suits your needs.

link|improve this answer
thanks a lot, but this link links to this thread, can you please paste working link? many thanks! – Martin Rázus Mar 11 '10 at 16:20
Something get wrong :) I have updated the link. – takeshin Mar 11 '10 at 17:02
feedback

i litte late but there is new framework of frameworks for php. Its the zf-boilerplate, it contains, zf frame work 1.11.11, doctrine 2.1.2 and a lot of other nice bolt ons. Its fully integrated, google zf-boilerplate. Cheers

link|improve this answer
feedback

You're going to find it very difficult (I was going to say no chance, but that's me being a pessimist) - ZF 1.10 is dependent on PHP 5.2, Doctrine 2.0 is written from the ground up for PHP 5.3.

You'd be better off either using Doctrine 1.2, which is working fine with ZF 1.10, or waiting for the upcoming ZF 2.0 release (which may be some time yet).

link|improve this answer
1  
Zend Framework works on both PHP 5.2 and PHP 5.3. Source code does not use namespaces and other PHP 5.3 features, but you may use them in your projects with ZF (e.g. ZF's autoloader should work fine with namespaces). – takeshin Mar 11 '10 at 15:58
That might be true, but the original poster did not state that he was using PHP 5.3, and my understanding was thus that he was using PHP 5.2 and attempting to integrate something that would just never work. Can't help thinking the downvotes are a bit harsh in that respect. – Stephen Orr Mar 11 '10 at 16:38
Aren't we this kind who do read manuals, requirements first? Aren't we? Then who does when we do not?! – takeshin Mar 11 '10 at 17:06
Fair point - I should really have asked for clarification of the user's setup before jumping off the deep end. I've upvoted your response anyway. – Stephen Orr Mar 12 '10 at 7:22
feedback

Your Answer

 
or
required, but never shown

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