Code for indexAction() in AdminLoginController is:

$form_object = new Application_Form_NewProfile();
$form_object->setAction('/adminlogin/index');
$form_object->setMethod('post');
$this->view->form = $form_object;
if($this->getRequest()->isPost())
{
 echo 'Inside event:';
 $login_data = $this->getRequest()->getPost();
 if($form_object->isValid($login_data))
 {
       $form_data = $form_object->getValues();

 }


}

In Application_Form_NewProfile I have made a form.and in index.phtml I have viewed that form using echo $this->form. When I run the project form appears but when i put the details in form elements such as textfields and then click on button then it says that InvalidController specified(adminlogin) as I have set action of the form in above indexAction() as $form_object->setAction('/adminlogin/index') but its not finding that controller Why??Plz help me out to resolve this issue.Thanks in advance

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

try this

$form_object->setAction($this->view->baseUrl("/adminlogin/index"));
link|improve this answer
still not working .......The same error is displayed again. – ryan Dec 13 '11 at 12:00
can you update your folder structure and your url? – eureka Dec 13 '11 at 12:02
1  
@AbhishekSharma try change your controller name to "admin" or "login" and test again to determine what is the root of error – eureka Dec 13 '11 at 12:07
1  
Uppercases are probably the cause of your error. – JBRTRND Dec 13 '11 at 12:14
@eureka I renamed the controller name from adminlogin to admin and it worked.Thanks.But why this is.Is there any naming convention to be followed? – ryan Dec 13 '11 at 12:37
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

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