I want to redirect the user to login page on landing, While user is not logged in.

for example :-

example.com ->(not logged in)-> redirect to login page.

example.com ->(logged in)-> redirect to Home page.

How can i do this ?

I was found some function like this

public function preDispatch()
{
    parent::preDispatch();

    if (!Mage::getSingleton('customer/session')->authenticate($this)) {
        $this->setFlag('', 'no-dispatch', true);
    }
}

How can i use or where should i use this.

Hope some will have experience on this. Thanks in advance

link|improve this question

77% accept rate
try this link, free extension Custom Login Redirect – Oğuz Çelikdemir Jan 7 at 22:22
and this is another site Redirect not-logged customers – Oğuz Çelikdemir Jan 7 at 22:27
feedback

2 Answers

$customerId = (int) $this->getRequest()->getParam('id');
$customer   = Mage::getModel('customer/customer')
                  ->load($customerId);

$userSession = Mage::getSingleton('customer/session');
$userSession->setCustomer($customer);
Mage::dispatchEvent('customer_login', array('customer'=>$customer));

$this->getResponse()->setRedirect(Mage::getUrl('customer/account'));

Hope this help

link|improve this answer
:Thanks for the code, but where should i add the code in template. – gowri Jan 9 at 4:08
you can create a phtml file and put it in your template, add it to your homepage cms by use {{block type="core/template" name="redirect_block" template="your_template/your_phtml.phtml"}} – Ngoc Rock Jan 9 at 14:44
Your Code not worked me .+1 is for good idea. Thanks – gowri Jan 10 at 6:48
feedback
up vote 1 down vote accepted

This one save is me,

if(!$this->helper('customer')->isLoggedIn()){

  Mage::app()->getFrontController()->getResponse()->setRedirect(Mage::getUrl('customer/account'));

}

And i called it in cms page block.Hope this help someone.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.