Palanikumar
Palanikumar

Reputation: 1746

Fatal error: Class 'Mage_Enterprise_Rma_Block_Adminhtml_Product_Renderer' not found in \lib\Varien\Data\Form\Abstract.php on line 146

Im migrating magento Enterprise edition to community edition. Im almost done. But having only one problem in backend.If I go to Manage Products and click on any products im getting this error.

Fatal error: Class 'Mage_Enterprise_Rma_Block_Adminhtml_Product_Renderer' not found in magento\lib\Varien\Data\Form\Abstract.php on line 146

Upvotes: 0

Views: 2054

Answers (2)

Michael Leiss
Michael Leiss

Reputation: 5670

Solution:

Use this for downgrading, then everything will be fine:

    DELETE FROM eav_attribute WHERE `attribute_code` = 'giftcard_amounts';
    DELETE FROM eav_attribute WHERE `attribute_code` = 'related_tgtr_position_limit';
    DELETE FROM eav_attribute WHERE `attribute_code` = 'related_tgtr_position_behavior';
    DELETE FROM eav_attribute WHERE `attribute_code` = 'upsell_tgtr_position_limit';
    DELETE FROM eav_attribute WHERE `attribute_code` = 'upsell_tgtr_position_behavior';
    DELETE FROM eav_attribute WHERE source_model LIKE 'enterprise_%';
    DELETE FROM eav_attribute WHERE backend_model LIKE 'enterprise_%';
    DELETE FROM eav_attribute WHERE attribute_code IN ('gift_wrapping_available', 'gift_wrapping_price');

Upvotes: 1

twa8000
twa8000

Reputation: 56

In your database locate the 'eav_attribute' table and delete the line with the attribute_code 'is_returnable'

Upvotes: 4

Related Questions