如何在Magento 1.9.2.0中修复此错误?

时间:2015-08-19 11:55:23

标签: php magento fatal-error

我在Model/Entity/Attribute/Abstract.php 第389行时出错,它只发生在产品视图页面上。

这是Abstract.php第389行的内容:

    public function getSource()
{
    if (empty($this->_source)) {
        if (!$this->getSourceModel()) {
            $this->setSourceModel($this->_getDefaultSourceModel());
        }
        $source = Mage::getModel($this->getSourceModel());
        if (!$source) {
            throw Mage::exception('Mage_Eav',
                Mage::helper('eav')->__('Source model "%s" not found for attribute "%s"',$this->getSourceModel(), $this->getAttributeCode())
            );
        }
// 389-->        $this->_source = $source->setAttribute($this);
    }
    return $this->_source;
}

错误仅输出:致命错误:第389行上的Mage_Adminhtml_Model_System_Config_Source_Yesno::setAttribute()中调用未定义的方法 /home/angeecom/public_html/app/code/core/Mage/Eav/Model/Entity/Attribute/Abstract.php

前段时间我发现了一段代码,我可以通过在Magento核心文件的行上方添加它来打印出更多有关错误但我无法找到它的代码。无论如何,我怎么去追踪这件事呢?

0 个答案:

没有答案