3
( ! ) SCREAM: Error suppression ignored for
( ! ) Fatal error: Call to a member function toHtml() on a non-object in C:\wamp\www\app\code\core\Mage\Core\Model\Layout.php on line 555

安装了 Magento 1.7 和 WAMP 2.2 以及自定义模板。Magento 管理员工作完美,但前端给出了上述错误。

Magento 1.7 安装和自定义模板中的 Page.xml 根本没有以下代码,因此没有尝试以下修复:

<block type="core/profiler" output="toHtml"/>

会成为:

<block type="core/profiler" output="toHtml" name="core_profiler"/>
4

1 回答 1

6

更改后:

<block type="core/profiler" output="toHtml"/>

<block type="core/profiler" output="toHtml" name="core_profiler"/> 

app/design/frontend/base/default/layout (或您的自定义 page.xml)下的 page.xml 中:从管理员刷新布局构建指令中的缓存或删除位于根目录下的/var/cache文件夹的内容你的magento文件夹

于 2012-10-02T06:32:06.863 回答