pat wrote:
Hi List,

How do I get the request object from inside the bootstrap file

I was hoping it might be something like

    *frontcontroller->getRequest(); *


But that dose not seem to work


The $_request doesn't get set until the front controller is dispatched. Try this:

Zend_Loader::loadClass('Zend_Controller_Request_Http');

$request = new Zend_Controller_Request_Http();

Richard

Reply via email to