<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Zend Framework: module config</title>
	<atom:link href="http://blog.vandenbos.org/2009/07/07/zend-framework-module-config/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.vandenbos.org/2009/07/07/zend-framework-module-config/</link>
	<description>Matthijs van den Bos&#039; thoughts on web development topics</description>
	<lastBuildDate>Tue, 13 Jul 2010 05:03:42 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Bazmo</title>
		<link>http://blog.vandenbos.org/2009/07/07/zend-framework-module-config/comment-page-1/#comment-1886</link>
		<dc:creator>Bazmo</dc:creator>
		<pubDate>Tue, 13 Jul 2010 05:03:42 +0000</pubDate>
		<guid isPermaLink="false">http://blog.vandenbos.org/?p=66#comment-1886</guid>
		<description>Hi,

Am I missing something or wouldn&#039;t it be better to add the module options to the Zend_Config object in Zend_Registry?

Bazmo</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>Am I missing something or wouldn&#8217;t it be better to add the module options to the Zend_Config object in Zend_Registry?</p>
<p>Bazmo</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Zend Framework: 模块(Module)特定的配置</title>
		<link>http://blog.vandenbos.org/2009/07/07/zend-framework-module-config/comment-page-1/#comment-1883</link>
		<dc:creator>Zend Framework: 模块(Module)特定的配置</dc:creator>
		<pubDate>Wed, 02 Jun 2010 15:31:03 +0000</pubDate>
		<guid isPermaLink="false">http://blog.vandenbos.org/?p=66#comment-1883</guid>
		<description>[...] You can read about Matthijs solution on his blog: Zend Framework: Module Config. [...]</description>
		<content:encoded><![CDATA[<p>[...] You can read about Matthijs solution on his blog: Zend Framework: Module Config. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michelangelo</title>
		<link>http://blog.vandenbos.org/2009/07/07/zend-framework-module-config/comment-page-1/#comment-1879</link>
		<dc:creator>Michelangelo</dc:creator>
		<pubDate>Wed, 19 May 2010 10:00:49 +0000</pubDate>
		<guid isPermaLink="false">http://blog.vandenbos.org/?p=66#comment-1879</guid>
		<description>Hi 

I have tried to follow the tutorial and now I have all set but I get this error:
Fatal error: Uncaught exception &#039;Zend_Loader_PluginLoader_Exception&#039; with message &#039;Plugin by name &#039;Profile&#039; was not found in the registry; used paths: Zend_View_Helper_

I have an helper for the Admin module folder but If I call the Default module I see that error. How have I split the modules?

Thanks</description>
		<content:encoded><![CDATA[<p>Hi </p>
<p>I have tried to follow the tutorial and now I have all set but I get this error:<br />
Fatal error: Uncaught exception &#8216;Zend_Loader_PluginLoader_Exception&#8217; with message &#8216;Plugin by name &#8216;Profile&#8217; was not found in the registry; used paths: Zend_View_Helper_</p>
<p>I have an helper for the Admin module folder but If I call the Default module I see that error. How have I split the modules?</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bill</title>
		<link>http://blog.vandenbos.org/2009/07/07/zend-framework-module-config/comment-page-1/#comment-1878</link>
		<dc:creator>bill</dc:creator>
		<pubDate>Thu, 13 May 2010 21:47:29 +0000</pubDate>
		<guid isPermaLink="false">http://blog.vandenbos.org/?p=66#comment-1878</guid>
		<description>Hm.. I used Jeroen&#039;s layout plugin, it solved the problem</description>
		<content:encoded><![CDATA[<p>Hm.. I used Jeroen&#8217;s layout plugin, it solved the problem</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bill</title>
		<link>http://blog.vandenbos.org/2009/07/07/zend-framework-module-config/comment-page-1/#comment-1877</link>
		<dc:creator>bill</dc:creator>
		<pubDate>Thu, 13 May 2010 21:12:02 +0000</pubDate>
		<guid isPermaLink="false">http://blog.vandenbos.org/?p=66#comment-1877</guid>
		<description>resources.modulesetup[] =
I&#039;ve already put this line at the first line of my [production] segment but it still takes the resources given in application.ini. 

this is my module.ini
[production]
phpSettings.display_startup_errors = 1
phpSettings.display_errors = 1
resources.layout.layoutPath = APPLICATION_PATH &quot;/modules/testmodule/layouts/scripts/&quot;
resources.layout.layout = &quot;reallayout&quot;
resources.frontController.controllerDirectory = APPLICATION_PATH &quot;/modules/testmodule/controllers&quot;
resources.frontController.params.displayExceptions = 0



and this is my application.ini
[production]
resources.modulesetup[] = &quot;&quot;
resources.modules[] = &quot;&quot;
pluginPaths.Cyberlab_Application_Resource = &quot;Cyberlab/Application/Resource&quot;
resources.frontController.controllerDirectory = APPLICATION_PATH &quot;/controllers&quot;
resources.frontController.params.displayExceptions = 0
resources.frontController.moduleDirectory = APPLICATION_PATH &quot;/modules&quot;
phpSettings.display_startup_errors = 1
phpSettings.display_errors = 1
includePaths.library = APPLICATION_PATH &quot;/../library&quot;
bootstrap.path = APPLICATION_PATH &quot;/Bootstrap.php&quot;
bootstrap.class = &quot;Bootstrap&quot;
appnamespace = &quot;Application&quot;
resources.view[] =
resources.layout.layoutPath = APPLICATION_PATH &quot;/layouts/scripts/&quot;
resources.layout.layout = &quot;common&quot;

this makes my module&#039;s layout stick to the one inside default layout path.
does anyone know how to solve this?</description>
		<content:encoded><![CDATA[<p>resources.modulesetup[] =<br />
I&#8217;ve already put this line at the first line of my [production] segment but it still takes the resources given in application.ini. </p>
<p>this is my module.ini<br />
[production]<br />
phpSettings.display_startup_errors = 1<br />
phpSettings.display_errors = 1<br />
resources.layout.layoutPath = APPLICATION_PATH &#8220;/modules/testmodule/layouts/scripts/&#8221;<br />
resources.layout.layout = &#8220;reallayout&#8221;<br />
resources.frontController.controllerDirectory = APPLICATION_PATH &#8220;/modules/testmodule/controllers&#8221;<br />
resources.frontController.params.displayExceptions = 0</p>
<p>and this is my application.ini<br />
[production]<br />
resources.modulesetup[] = &#8220;&#8221;<br />
resources.modules[] = &#8220;&#8221;<br />
pluginPaths.Cyberlab_Application_Resource = &#8220;Cyberlab/Application/Resource&#8221;<br />
resources.frontController.controllerDirectory = APPLICATION_PATH &#8220;/controllers&#8221;<br />
resources.frontController.params.displayExceptions = 0<br />
resources.frontController.moduleDirectory = APPLICATION_PATH &#8220;/modules&#8221;<br />
phpSettings.display_startup_errors = 1<br />
phpSettings.display_errors = 1<br />
includePaths.library = APPLICATION_PATH &#8220;/../library&#8221;<br />
bootstrap.path = APPLICATION_PATH &#8220;/Bootstrap.php&#8221;<br />
bootstrap.class = &#8220;Bootstrap&#8221;<br />
appnamespace = &#8220;Application&#8221;<br />
resources.view[] =<br />
resources.layout.layoutPath = APPLICATION_PATH &#8220;/layouts/scripts/&#8221;<br />
resources.layout.layout = &#8220;common&#8221;</p>
<p>this makes my module&#8217;s layout stick to the one inside default layout path.<br />
does anyone know how to solve this?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stijn Huyberechts</title>
		<link>http://blog.vandenbos.org/2009/07/07/zend-framework-module-config/comment-page-1/#comment-1876</link>
		<dc:creator>Stijn Huyberechts</dc:creator>
		<pubDate>Wed, 05 May 2010 08:38:10 +0000</pubDate>
		<guid isPermaLink="false">http://blog.vandenbos.org/?p=66#comment-1876</guid>
		<description>nevermind my last comment, my module bootstrap was extending the Zend_Application_Bootstrap_Bootstrap instead of the appropriate Zend_Application_Module_Bootstrap class. That caused the duplicate initialisation of some resources...</description>
		<content:encoded><![CDATA[<p>nevermind my last comment, my module bootstrap was extending the Zend_Application_Bootstrap_Bootstrap instead of the appropriate Zend_Application_Module_Bootstrap class. That caused the duplicate initialisation of some resources&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Cyril</title>
		<link>http://blog.vandenbos.org/2009/07/07/zend-framework-module-config/comment-page-1/#comment-1875</link>
		<dc:creator>Cyril</dc:creator>
		<pubDate>Tue, 04 May 2010 12:47:58 +0000</pubDate>
		<guid isPermaLink="false">http://blog.vandenbos.org/?p=66#comment-1875</guid>
		<description>Very effective and clean solution ! Thanks a lot :)</description>
		<content:encoded><![CDATA[<p>Very effective and clean solution ! Thanks a lot <img src='http://blog.vandenbos.org/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stijn Huyberechts</title>
		<link>http://blog.vandenbos.org/2009/07/07/zend-framework-module-config/comment-page-1/#comment-1874</link>
		<dc:creator>Stijn Huyberechts</dc:creator>
		<pubDate>Tue, 04 May 2010 09:47:10 +0000</pubDate>
		<guid isPermaLink="false">http://blog.vandenbos.org/?p=66#comment-1874</guid>
		<description>I like this approach, but it seems that the &quot;modulesetup&quot; resource is initialized for each module that has its own bootstrap. I think this is the normal behaviour of Zend_Application, that re-initializes resources that are defined before the &quot;modules&quot; resource.

Anyway, I need Bootstrap classes in my modules, so the approach mentioned by Leonard Donkers is more suitable for me.

thx for your contributions!</description>
		<content:encoded><![CDATA[<p>I like this approach, but it seems that the &#8220;modulesetup&#8221; resource is initialized for each module that has its own bootstrap. I think this is the normal behaviour of Zend_Application, that re-initializes resources that are defined before the &#8220;modules&#8221; resource.</p>
<p>Anyway, I need Bootstrap classes in my modules, so the approach mentioned by Leonard Donkers is more suitable for me.</p>
<p>thx for your contributions!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeff</title>
		<link>http://blog.vandenbos.org/2009/07/07/zend-framework-module-config/comment-page-1/#comment-1871</link>
		<dc:creator>Jeff</dc:creator>
		<pubDate>Mon, 03 May 2010 01:08:06 +0000</pubDate>
		<guid isPermaLink="false">http://blog.vandenbos.org/?p=66#comment-1871</guid>
		<description>Hi,
Sorry, i&#039;m newbie.
Where can i put this line?
$this-&gt;getInvokeArg(&#039;bootstrap&#039;)-&gt;getOption(&#039;modulenamehere&#039;);

In Module Bootstrap, Module Controller or something else?
Thanks.</description>
		<content:encoded><![CDATA[<p>Hi,<br />
Sorry, i&#8217;m newbie.<br />
Where can i put this line?<br />
$this-&gt;getInvokeArg(&#8216;bootstrap&#8217;)-&gt;getOption(&#8216;modulenamehere&#8217;);</p>
<p>In Module Bootstrap, Module Controller or something else?<br />
Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: crowmosta</title>
		<link>http://blog.vandenbos.org/2009/07/07/zend-framework-module-config/comment-page-1/#comment-1870</link>
		<dc:creator>crowmosta</dc:creator>
		<pubDate>Wed, 14 Apr 2010 09:54:47 +0000</pubDate>
		<guid isPermaLink="false">http://blog.vandenbos.org/?p=66#comment-1870</guid>
		<description>Hi
I tried a similar approch but I get many trouble.
Are there downloadable exemple ?

Thanks</description>
		<content:encoded><![CDATA[<p>Hi<br />
I tried a similar approch but I get many trouble.<br />
Are there downloadable exemple ?</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
</channel>
</rss>
