zend framework - Undefined index: HTTP_X_URL_BEFORE_REWRITE -


i have application written in zend framework. when try open index file give me error:

php notice: undefined index: http_x_url_before_rewrite in c:\inetpub\wwwroot\test\library\zend\controller\request\http.php on line 326 php notice: undefined index: http_x_url_before_rewrite in c:\inetpub\wwwroot\test\library\zend\controller\request\http.php on line 326

it`s depends of line in index.php echo $ctrl->dispatch(); because when coment it, application give me white site.

$ctrl is:

$ctrl = zend_controller_front::getinstance(); $ctrl->setbaseurl('/test'); $ctrl->throwexceptions(true); $ctrl->registerplugin(new dpcpluginauth($auth, $acl)); $ctrl->setcontrollerdirectory($config->controllers->toarray()); echo $ctrl->dispatch(); 

and function of liblary zend localized on zend/controller/request/http.php , name public function setrequesturi

please me ... don't know what's incorrect in code , means message.

my mod_rewrite module isapi_rewrite3_lite


Comments

Popular posts from this blog

c++ - Difference between pre and post decrement in recursive function argument -

php - Nothing but 'run(); ' when browsing to my local project, how do I fix this? -

php - How can I echo out this array? -