magento 1.x Mage_Customlogin_Helper_Data’ not found in …./app/Mage.php on line 546″

I follow the article in Internet ,

1.check the config.xml

<global>
   <blocks>
      <customerlogin>
         <class>CustomerParadigm_Customerlogin_Block</class>
      </customerlogin>
   </blocks>
   <helpers>
      <customerParadigm_customerlogin>
         <class>CustomerParadigm_Customerlogin_Helper</class>
      </customerParadigm_customerlogin>
   </helpers>

it is ok 
finally I found the problem from 
system.xml and remove
module="customlogin"  it work !
  <groups>
           <general translate="label" module="customlogin">
               <label>ID in Emails</label>
               <tab>customerparadigm</tab>
               <frontend_type>text</frontend_type>
               <sort_order>1010</sort_order>
               <show_in_default>1</show_in_default>
               <show_in_website>1</show_in_website>
               <show_in_store>1</show_in_store>
<fields>
   <selectfromdate translate="label

Leave a Comment