致命错误:在第759行调用成员函数addToChildGroup()app / code / core / Mage / Core / Block / Abstract.php

时间:2013-02-06 07:13:15

标签: magento magento-1.7

我在catalog.xml中为block添加了此代码,我收到了以下错误 -

致命错误:在第759行调用成员函数addToChildGroup()app / code / core / Mage / Core / Block / Abstract.php

<!-- custom change here-->

<block type="catalog/product_list_related" name="catalog.product.related" as="product_additional_data" after="product.info.upsell" template="catalog/product/list/related.phtml"/>

<action method="setColumnCount"><columns>4</columns></action>                    

                <action method="setItemLimit"><type>related</type><limit>4</limit></action>
</block>
<!-- custom change  here-->                            

2 个答案:

答案 0 :(得分:7)

你在这里关闭了你的区块:

<block ... />

我想这会导致错误。

试试这段代码:

<block type="catalog/product_list_related" name="catalog.product.related" as="product_additional_data" after="product.info.upsell" template="catalog/product/list/related.phtml">
  <action method="setColumnCount">
    <columns>4</columns>
  </action>                    
  <action method="setItemLimit">
    <type>related</type>
    <limit>4</limit>
  </action>
</block>

答案 1 :(得分:0)

当我在github repository上工作时,我遇到了类似的问题。我在本地系统上安装了一个扩展,然后将代码推送到GitHub。 第二天,当我从github中删除扩展并将代码移动到开发服务器时。然后我遇到了同样的问题。

对我来说,清除缓存工作