You just don't have an indexAction in your controller :)
Marco Pivetta
http://twitter.com/Ocramius
http://marco-pivetta.com



On 12 November 2011 21:19, vindu525 [via Zend Framework Community] <
ml-node+s634137n4035186...@n4.nabble.com> wrote:

> Page not found
>
> Exception information:
>
> Message: Action "list" does not exist and was not trapped in __call()
>
> Stack trace:
>
> #0 C:\xampp\htdocs\LC_Case\library\Zend\Controller\Action.php(518):
> Zend_Controller_Action->__call('listAction', Array)
> #1
> C:\xampp\htdocs\LC_Case\library\Zend\Controller\Dispatcher\Standard.php(295):
> Zend_Controller_Action->dispatch('listAction')
> #2 C:\xampp\htdocs\LC_Case\library\Zend\Controller\Front.php(954):
> Zend_Controller_Dispatcher_Standard->dispatch(Object(Zend_Controller_Request_Http),
> Object(Zend_Controller_Response_Http))
> #3
> C:\xampp\htdocs\LC_Case\library\Zend\Application\Bootstrap\Bootstrap.php(97):
> Zend_Controller_Front->dispatch()
> #4 C:\xampp\htdocs\LC_Case\library\Zend\Application.php(366):
> Zend_Application_Bootstrap_Bootstrap->run()
> #5 C:\xampp\htdocs\LC_Case\public\index.php(26): Zend_Application->run()
> #6 {main}
> Request Parameters:
>
> array (
>   'controller' => 'signup',
>   'action' => 'create',
>   'module' => 'default',
>   'id' => '',
>   'fullname' => 'aravind',
>   'username' => 'vindu525',
>   'password' => 'vindu525',
>   'email' => 'vindu...@gmail.com',
>   'dob' => '5-25-1992',
>   'gender' => 'Male',
>   'submit' => 'Sign Up',
> )
>
> //create action method
>  public function createAction()
>     {
>         $userForm = new Form_SignUpForm();
>                 if($this->_request->isPost())
>                 {
>                         if($userForm->isValid($_POST))
>                         {
>                                 $userModel = new Model_SignUpForm();
>                                 $userModel->createUser(
>                                         $userForm->getValue('firstname'),
>                                         $userForm->getValue('username'),
>                                         $userForm->getValue('password'),
>                                         $userForm->getValue('email'),
>                                         $userForm->getValue('dob'),
>                                         $userForm->getValue('gender')
>                                 );
>                                 return $this->_forward('list');
>                         }
>                 }
>
> Anybody please help....
>
> ------------------------------
>  If you reply to this email, your message will be added to the discussion
> below:
>
> http://zend-framework-community.634137.n4.nabble.com/ZF2-Database-configuration-tp4033733p4035186.html
>  To unsubscribe from Zend Framework Community, click 
> here<http://zend-framework-community.634137.n4.nabble.com/template/NamlServlet.jtp?macro=unsubscribe_by_code&node=634137&code=b2NyYW1pdXNAZ21haWwuY29tfDYzNDEzN3wxNzE0OTI1MTk4>
> .
> See how NAML generates this 
> email<http://zend-framework-community.634137.n4.nabble.com/template/NamlServlet.jtp?macro=macro_viewer&id=instant_html%21nabble%3Aemail.naml&base=nabble.naml.namespaces.BasicNamespace-nabble.view.web.template.NabbleNamespace-nabble.view.web.template.InstantMailNamespace&breadcrumbs=instant+emails%21nabble%3Aemail.naml-instant_emails%21nabble%3Aemail.naml-send_instant_email%21nabble%3Aemail.naml>
>


--
View this message in context: 
http://zend-framework-community.634137.n4.nabble.com/ZF2-Database-configuration-tp4033733p4035238.html
Sent from the Zend Framework mailing list archive at Nabble.com.

Reply via email to