Have you set recursive anywhere? http://book.cakephp.org/view/439/recursive

Jeremy Burns
[email protected]


On 27 May 2010, at 10:16, Shaz wrote:

> Thanks all - I went back to the models and checked the belongsto/
> hasmany declerations, some plurals where they shouldn't be and no more
> errors. But now another delima; how do i get the ranks associated with
> the comments?
> 
> Ideally I would like an array returned like:
> 
> Article
> User
> Comment
> - Com
> - - ComRank
> - Com
> - - ComRank
> - - ComRank
> 
> And $this->Article->read only gives an array with the following:
> 
> Article
> User
> Comment
> - Com
> - Com
> - Com
> 
> $this->Article->Comment->CommentRank->read() wouldn't work as there's
> multiple comments with multiple ranks each...
> 
> 
> On 27 May, 04:35, Filipe Teles Rodrigues <[email protected]>
> wrote:
>> You are using the plural. Try $this->Article->Comment->CommentsRank
>> 
>> 2010/5/26 Shaz <[email protected]>
>> 
>>> I have:
>> 
>>> Article [hasmany] Comment [hasmany] CommentRank
>>> CommentRank [belongsto] Comment [belongsto] Article
>> 
>>> I try to use (in the articles controller) $this->Article->Comments-
>>>> CommentsRanks->read() but it results in “Undefined property:
>>> AppModel::$CommentsRanks”
>> 
>>> I am trying to avoid using $uses as the models are related to one
>>> another; but the binding only goes as far as $this->Article->Comments,
>>> any advice on why it is not going further? I have tried the different
>>> recursive levels to no avail.
>> 
>>> Check out the new CakePHP Questions sitehttp://cakeqs.organd help others
>>> with their CakePHP related questions.
>> 
>>> You received this message because you are subscribed to the Google Groups
>>> "CakePHP" group.
>>> To post to this group, send email to [email protected]
>>> To unsubscribe from this group, send email to
>>> [email protected]<cake-php%[email protected]>For
>>>  more options, visit this group at
>>> http://groups.google.com/group/cake-php?hl=en
> 
> Check out the new CakePHP Questions site http://cakeqs.org and help others 
> with their CakePHP related questions.
> 
> You received this message because you are subscribed to the Google Groups 
> "CakePHP" group.
> To post to this group, send email to [email protected]
> To unsubscribe from this group, send email to
> [email protected] For more options, visit this group at 
> http://groups.google.com/group/cake-php?hl=en

Check out the new CakePHP Questions site http://cakeqs.org and help others with 
their CakePHP related questions.

You received this message because you are subscribed to the Google Groups 
"CakePHP" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected] For more options, visit this group at 
http://groups.google.com/group/cake-php?hl=en

Reply via email to