Magento ekleyerek nesneyi yüklemek

0 Cevap php

Başlamak için bu tuturial ardından, Magento Kategorileri için bazı ekstra seçenekler tanımlamak diyelim bir modül oluşturma: http://www.magentocommerce.com/wiki/5_-_modules_and_development/0_-_module_development_in_magento/installing_custom_attributes_with_your_module

Ben ModuleCreator ile oluşturulan bir iskelet modülü üzerinde inşa.

I have created Setup.php (with the capital) in Infoweb/Margins/Model/Resource/Eav/Mysql4/ and in it my class defined:

class Infoweb_Margins_Resource_Eav_Mysql4_Setup extends Mage_Eav_Model_Entity_Setup{}

Ben de (dinlenme nedeniyle iskelet modülün zaten vardı) benim config.php bu satırı eklendi:

<class>Infoweb_Margins_Resource_Eav_Mysql4_Setup</class>

Now when trying to load a page, magento searches for this class but gives a fatal error saying the class was not found ... Error: *Fatal error: Class 'Infoweb_Margins_Resource_Eav_Mysql4_Setup' not found in /home/users/A000456/xxx/xxx/app/code/core/Mage/Core/Model/Resource/Setup.php on line 160*

Sorun burada yatıyor Üzerine Düşünceler?

Magento 1.4.1.0 kullanma

0 Cevap