将文件夹从测试文件夹移动到我的 public_html 活动文件夹后,我收到了这些错误。
致命错误:在第 67 行的 /.../Page.php 中的非对象上调用成员函数 getId()
致命错误:在 /.../ 中的非对象上调用成员函数 checkIdentifier()第 90 行的 Router.php
这就是线条的样子
PAGE.PHP
$page = Mage::getSingleton('cms/page');
if (!is_null($pageId) && $pageId!==$page->getIdentifier()) {
$delimeterPosition = strrpos($pageId, '|');
if ($delimeterPosition) {
$pageId = substr($pageId, 0, $delimeterPosition);
路由器.PHP
$page = Mage::getModel('cms/page');
$pageId = $page->checkIdentifier($identifier, Mage::app()->getStore()->getId());
if (!$pageId) {
return false;