I'm trying to display an error message using flashMessenger and display the message before redirecting to a another page but it does not show up the error message, just do the redirection,
Below is the that i am using in my controller
$this->_helper->flashMessenger->addMessage('this user name is already taken please choose a another');
$message = $this->_helper->flashMessenger->getCurrentMessages();
echo($message[0]);
sleep(5);
$this->_redirect('index/login');
can any one tell me why