所以我已经安装了几个扩展,其中一个是fontis feed生成器,一切正常,直到我尝试访问管理类别,它出现了#34;处理您的请求时出错了#34; 错误如下
a:5:{i:0;s:110:"Source model "feedsgenerator/googleproducts_source_taxonomy" not found for attribute "google_product_category"";i:1;s:4101:"#0
答案 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";