Re: [fw-general] Hiding the default controller in modular layout

2011-03-15 Thread AJ McKee
Thanks Hector, I was expecting this behavior as default but nevertheless shall play with this to figure it out. Ta AJ

Re: [fw-general] Hiding the default controller in modular layout

2011-03-15 Thread Hector Virgen
Take a look at Zend_Controller_Dispatcher_Standard#isDispatchable() http://framework.zend.com/apidoc/core/Zend_Controller/Dispatcher/Zend_Controller_Dispatcher_Standard.html#isDispatchable This may help you accomplish what you want without using a custom route. If this works, you'll probably want

Re: [fw-general] Hiding the default controller in modular layout

2011-03-15 Thread AJ McKee
Hi Juan, On Tuesday 15 March 2011 at 14:32, Juan Felipe Alvarez Saldarriaga wrote: Hey, > Thanks for reply. > Untested: > > resources.router.routes.home.route = "/home/:action/*" > resources.router.routes.home.defaults.module = "home" > resources.router.routes.home.defaults.controller = "index"

Re: [fw-general] Re: Exception when Setting up WURFL

2011-03-15 Thread Tim Brayshaw
On 15 March 2011 11:13, is that you john wayne? wrote: > As luck would have i solved the problem about 20 minutes before you posted > your reply.  My confusion was i was trying to do this in the bootstrap. > Which, for those like me who are still n00bs, isnt possible and will not > work and will

[fw-general] Re: Where to place auto loader?

2011-03-15 Thread nettrinity
Thanks for you input. Let me think for a while...:) -- View this message in context: http://zend-framework-community.634137.n4.nabble.com/Where-to-place-auto-loader-tp3352960p3355523.html Sent from the Zend Framework mailing list archive at Nabble.com. -- List: fw-general@lists.zend.com Info: h

Re: [fw-general] Licensing doubts

2011-03-15 Thread Matthew Weier O'Phinney
-- Ivan -- wrote (on Tuesday, 15 March 2011, 01:51 PM +0100): > After that I have been surfing in the Zend web pages I am continuing without > resolving several doubts about a development that I have done for > configuring the modules from any project. > I think to understand that I can send a pro

Re: [fw-general] Hiding the default controller in modular layout

2011-03-15 Thread Juan Felipe Alvarez Saldarriaga
Hey, Untested: resources.router.routes.home.route = "/home/:action/*" resources.router.routes.home.defaults.module = "home" resources.router.routes.home.defaults.controller = "index" resources.router.routes.home.defaults.action = "index" On Tue, Mar 15, 2011 at 3:03 AM, AJ McKee wrote: > Hi All

[fw-general] Licensing doubts

2011-03-15 Thread Ivan --
Hi, After that I have been surfing in the Zend web pages I am continuing without resolving several doubts about a development that I have done for configuring the modules from any project. I think to understand that I can send a proposal with this development, but I am not sure. Moreover, I have

[fw-general] Re: Exception when Setting up WURFL

2011-03-15 Thread is that you john wayne?
Matt, Thanks for this concise and informative reply. As luck would have i solved the problem about 20 minutes before you posted your reply. My confusion was i was trying to do this in the bootstrap. Which, for those like me who are still n00bs, isnt possible and will not work and will throw up

[fw-general] Hiding the default controller in modular layout

2011-03-15 Thread AJ McKee
Hi All, I'm testing a modular layout with ZF 1.11.4 I've created a "home" module and IndexController, index views etc. As such I can access the module using the url below with the default controller: server.tld/home/ And this displays the IndexController Index Action. My application ini has th