2014-10-08 74 views
0

所以我已经安装了几个扩展其中之一是fontis饲料生成器,一切工作正常,直到我尝试和访问管理类别它出现了“一直有一个错误处理您的要求” 的错误如下无法访问仪表板中的类别(Magento)

a:5:{i:0;s:110:"Source model "feedsgenerator/googleproducts_source_taxonomy" not found    for attribute "google_product_category"";i:1;s:4101:"#0  

回答

1

运行该SQL代码来检查是否有属性导致问题:

select * from eav_attribute where attribute_code = "google_product_category"; 

如果你得到的结果显示属性,那么你应该将其删除。要做到这一点,你可以做到以下几点: 添加到您的index.php文件的末尾:

$installer = Mage::getResourceModel('catalog/setup','catalog_setup'); 
$installer->removeAttribute('catalog_category','google_product_category'); 

残疾缓存运行的网站一次(确保代码的运行),然后从两线index.php文件。

现在应该修复。您可以通过再次运行sql代码来检查属性是否仍然存在:

select * from eav_attribute where attribute_code = "google_product_category"; 
+0

谢谢!我当时摆脱了延期,并解决了问题 – 2015-05-15 02:50:19