因为我发现的相似之处与路径略有不同。
Fatal error: Call to a member function getCode() on boolean in /MagentoProject/app/code/core/Mage/Customer/Model/Session.php on line 71
错误消息所说的代码是该行:
$namespace .= '_' . (Mage::app()->getStore()->getWebsite()->getCode());
我怎么能解决这个问题?我什么都没做......
我设置了环境
错误点在 function __construct()
之下public function __construct()
{
$namespace = 'customer';
if ($this->getCustomerConfigShare()->isWebsiteScope()) {
$namespace .= '_' . (Mage::app()->getStore()->getWebsite()->getCode());
}
$this->init($namespace);
Mage::dispatchEvent('customer_session_init', array('customer_session'=>$this));
}
答案 0 :(得分:0)
当我从现有项目中使用Magento 1.6时,我也遇到了这个问题。
我创建了一个文件" local.xml"在app / etc /下安装之前,根据同一文件夹中的local.xml.template。它不再经历安装进度,但网站已成功加载。