I have my own custom module observer to listen customer_login event. I can run the observer method in main website store. When I moved to other store the customer_login event is not triggered while the customer logged in. It works perfectly in main store. I could'nt find out the solution . I have followed Magento event observer not working on some machines and Events not firing/or observer not working in magento.
Thanks in advance.
My config is
`<events>
<customer_login>
<observers>
<mymodule>
<type>singleton</type>
<class>Mypackage_Mymodule_Model_Observer</class>
<method>runAfterLogin</method>
</mymodule>
</observers>
</customer_login>
</events>`