Magento: Redirect User After Login

http://www.magentocommerce.com/magento-connect/MagePsycho/extension/3763/custom_login_redirect Or You Have to create a small Extension for this Requirement. Create the extension as follows. app/etc/modules/Sushant_Loginredirect.xml app/code/local/Sushant/Loginredirect/etc/adminhtml.xml app/code/local/Sushant/Loginredirect/etc/config.xml app/code/local/Sushant/Loginredirect/etc/system.xml app/code/local/Sushant/Loginredirect/Helper/Data.php app/code/local/Sushant/Loginredirect/Model/Observer/Customer.php

Magento: Check Version

Some time you don’t know you are working on which version of magento. So if you want to see the version of magento using code follow below steps. Step 1 : create one checkversion.php file in root directory of your magento project. Step 2 : Now copy and paste the below code. Read more…