Hi All

I have just written my first tool using Zend Framework - in my sandbox.
Now I have to integrate it with a production environment.
The problem is that the Apache which runs my tool is "a second in a row", I
mean:
somewhere in a web exists apache which runs: 
   www.my-page.com
, and any http query which fits:
   www.my-page.com/webreport 
redirects to "my" apache, which is to run my new tool.

So the problem is: how to tell the zend to use: 
     www.my-page.com/webreport 
as a base url instead of 
     www.my-page.com
(it has nothing to do with directory structure in the web server (I
believe)).

At the moment zend cuts down the /webreport prefix and off course can not
find a controller in the incorrect url: 
     www.my-page.com/myapplication/auth/login
because it is located in:
     www.my-page.com/webreport/myapplication/auth/login

In
http://blog.astrumfutura.com/categories/16-Zend-Framework/P2.html
I have found that: 
"sometimes certain systems will also need to manually set the Front
Controller's base URL using a extra Bootstrap::setupFrontController()
addition"


No idea how to do it.
Thanks in advance for any help.

-- 
View this message in context: 
http://www.nabble.com/Front-Controller%27s-base-URL-tp18606617p18606617.html
Sent from the Zend Framework mailing list archive at Nabble.com.

Reply via email to