Hello, > Thanks for your reply, i have cleared the cache and tired setting > debug to 0 but the error is still there but not showed because debug > is set too zero.
I haven't seen such a bug yet :) What I'd do, is dig into the Cake core a little. http://api.cakephp.org/view_source/component/#line-248 248 if (isset($object->{$component}->components) && is_array($object->{$component}->components) && (!isset($object->{$component}->{$parent}))) { 249 $this->_loadComponents($object->{$component}, $component); 250 } It's either $component or $parent that is empty I guess. Try dumping that as well as $object with var_dump() to get maximum infos possible. Depending on what you can use - FTP only or console and version control you have to pick best strategy and debug a little. Hope this helps... Regards, Piotr 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
