Re: Interesting hasMany associations problem

2006-04-06 Thread josh southern
I found it. Missed a semicolon in an unrelated association variable definition. Thanks for taking a look. This is actually a good example of how to do multiple associations between two models, for anyone browsing. It works great! --~--~-~--~~~---~--~~ You received

Re: Interesting hasMany associations problem

2006-04-06 Thread Mika
Hmm, I've just tried this in PhpEclipse which usually shows syntax errors and it's seems fine. Maybe your best bet is to start taking out each association until it works and they you will be able to find the error? --~--~-~--~~~---~--~~ You received this message b

Re: Interesting hasMany associations problem

2006-04-06 Thread Mika
The error should tell you what line the error is happening on. Check that line out. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Cake PHP" group. To post to this group, send email to cake-php@googlegroups.com To

Interesting hasMany associations problem

2006-04-05 Thread josh southern
I have an app I'm trying to convert to Cake, which basically spits out a menu of products. Therefore, the Menu class (and others) needs to hold many different products in several fields. I do not have a lookup table, because the app written procedurally (sp?) didn't need one. I've tried to set up