Re: [fw-general] Zend_Application using modules

2009-03-25 Thread Marko Korhonen
hi, I made the same setup but I have protected function _executeResource($resource) (in class Zend_Application_Bootstrap_Base) running in endless loop. It loop again and again resources named "frontcontroller" and "modules". Below are my setup: br, Marko APPLICATION_PATH >> Bootstrap.php -

Re: [fw-general] Zend_Application using modules

2009-03-24 Thread Matthew Weier O'Phinney
-- Ben Scholzen 'DASPRiD' wrote (on Tuesday, 24 March 2009, 12:12 PM +0100): > When creating your bootstrap file, the methods are actually executed in > the order they appear in the class. The same goes for the resources; > they are executed in the order they are added (FIFO). Just a note on this

Re: [fw-general] Zend_Application using modules

2009-03-24 Thread keith Pope
Ah ok, that makes more sense I wasnt sure how reliable that was :) 2009/3/24 Ben Scholzen 'DASPRiD' : > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > When creating your bootstrap file, the methods are actually executed in > the order they appear in the class. The same goes for the resources;

Re: [fw-general] Zend_Application using modules

2009-03-24 Thread Ben Scholzen 'DASPRiD'
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 When creating your bootstrap file, the methods are actually executed in the order they appear in the class. The same goes for the resources; they are executed in the order they are added (FIFO). ... : ___ _ ___ ___

Re: [fw-general] Zend_Application using modules

2009-03-24 Thread keith Pope
Hi Matthew, Your suggestions worked I have it working nicely now :) I would maybe suggest making this clear when the documentation is written, it was a little counter intuitive that the default module is handled differently to other modules. Also I still have some reservations about the control

Re: [fw-general] Zend_Application using modules

2009-03-23 Thread keith Pope
Thx for the tips Matthew :) I think my examples were a little confusing, I have been hacking about all day trying to figure out my looping problem :) For my storefront app I use one module currently storefront which I set as the default module, this was so I can have everything namespaced nicely.

Re: [fw-general] Zend_Application using modules

2009-03-23 Thread Matthew Weier O'Phinney
-- keith Pope wrote (on Monday, 23 March 2009, 03:26 PM +): > I have been trying out Zend_App again as it seems to be moving on a > bit now, I am having some problems using modules, I keep getting: > > Maximum function nesting level of '100' reached, aborting! in > /home/keith/www/ZApp/librar

[fw-general] Zend_Application using modules

2009-03-23 Thread keith Pope
Hi, I have been trying out Zend_App again as it seems to be moving on a bit now, I am having some problems using modules, I keep getting: Maximum function nesting level of '100' reached, aborting! in /home/keith/www/ZApp/library/Zend/Loader/PluginLoader.php on line 125 I have been trying to trac