[fw-general] Re: I am facing this error when i run query to databse

2011-11-30 Thread intellix
I've just got into ZF1/2 and I still haven't found a top-down explanation of what ZF is doing in the background. Would be nice to have a diagram that says: This starts here, this calls this, this grabs the DI, this pulls in the dependencies then this gets the view parameters then this passes them

Re: [fw-general] Re: I am facing this error when i run query to databse

2011-11-30 Thread Matthew Weier O'Phinney
-- intellix domwat...@live.co.uk wrote (on Wednesday, 30 November 2011, 01:22 PM -0800): I've just got into ZF1/2 and I still haven't found a top-down explanation of what ZF is doing in the background. Would be nice to have a diagram that says: This starts here, this calls this, this grabs the

[fw-general] Re: I am facing this error when i run query to databse

2011-11-13 Thread vindu525
Thank you Marco pivetta The values are getting inserted into the database , but still i dont know why this error occuring //complete controller ?php class SignupController extends Zend_Controller_Action { public function init() { /* Initialize action controller here */ }

[fw-general] Re: I am facing this error when i run query to databse

2011-11-12 Thread Marco Pivetta
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:

[fw-general] Re: I am facing this error when i run query to databse

2011-11-12 Thread Marco Pivetta
I am really sorry to answer you this way, but it looks like you don't understand how Zend Framework's MVC works. That return $this-_forward('list'); is like an internal redirect. I suggest you a read of http://framework.zend.com/manual/en/learning.quickstart.intro.html :) Marco Pivetta