<?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: Moving Bootstrap Code to Configuration</title>
	<atom:link href="http://www.zendcasts.com/moving-bootstrap-code-to-configuration/2009/11/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.zendcasts.com/moving-bootstrap-code-to-configuration/2009/11/</link>
	<description>free Zend Framework screencasts. Video tutorials to get you up to speed with different parts of the Zend Framework and enterprise PHP development.</description>
	<lastBuildDate>Wed, 01 Feb 2012 00:49:27 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
	<item>
		<title>By: Jay</title>
		<link>http://www.zendcasts.com/moving-bootstrap-code-to-configuration/2009/11/comment-page-1/#comment-23569</link>
		<dc:creator>Jay</dc:creator>
		<pubDate>Sun, 25 Sep 2011 19:43:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.zendcasts.com/?p=271#comment-23569</guid>
		<description>For anyone that cares.. you can also use the following style code in your ini:
autoloaderNamespaces[] = &quot;ZendX&quot;
autoloaderNamespaces[] = &quot;ZC&quot;</description>
		<content:encoded><![CDATA[<p>For anyone that cares.. you can also use the following style code in your ini:<br />
autoloaderNamespaces[] = &#8220;ZendX&#8221;<br />
autoloaderNamespaces[] = &#8220;ZC&#8221;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Reynald</title>
		<link>http://www.zendcasts.com/moving-bootstrap-code-to-configuration/2009/11/comment-page-1/#comment-21739</link>
		<dc:creator>Reynald</dc:creator>
		<pubDate>Thu, 04 Aug 2011 11:07:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.zendcasts.com/?p=271#comment-21739</guid>
		<description>I really love this tutorial! Thanks so much jon! You&#039;re a heaven sent. I&#039;m not yet using Zend Framework on my projects but I&#039;m learning a lot from you. :)</description>
		<content:encoded><![CDATA[<p>I really love this tutorial! Thanks so much jon! You&#8217;re a heaven sent. I&#8217;m not yet using Zend Framework on my projects but I&#8217;m learning a lot from you. <img src='http://www.zendcasts.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: as_psx</title>
		<link>http://www.zendcasts.com/moving-bootstrap-code-to-configuration/2009/11/comment-page-1/#comment-20939</link>
		<dc:creator>as_psx</dc:creator>
		<pubDate>Thu, 14 Jul 2011 11:58:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.zendcasts.com/?p=271#comment-20939</guid>
		<description>Hi,

i can&#039;t find the tutorial you did on modules. A search for casts with tag &quot;Modules&quot; only finds this video.</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>i can&#8217;t find the tutorial you did on modules. A search for casts with tag &#8220;Modules&#8221; only finds this video.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: BAO</title>
		<link>http://www.zendcasts.com/moving-bootstrap-code-to-configuration/2009/11/comment-page-1/#comment-16294</link>
		<dc:creator>BAO</dc:creator>
		<pubDate>Fri, 18 Mar 2011 16:19:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.zendcasts.com/?p=271#comment-16294</guid>
		<description>Hey 
You could be a wonderful teacher man. thanks for all tutorial :)</description>
		<content:encoded><![CDATA[<p>Hey<br />
You could be a wonderful teacher man. thanks for all tutorial <img src='http://www.zendcasts.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Simon</title>
		<link>http://www.zendcasts.com/moving-bootstrap-code-to-configuration/2009/11/comment-page-1/#comment-15477</link>
		<dc:creator>Simon</dc:creator>
		<pubDate>Thu, 17 Feb 2011 21:46:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.zendcasts.com/?p=271#comment-15477</guid>
		<description>Excellent, I was searching the ZF documentation (which imo sucks) to find a list of available options to configure in *. ini file and couldn&#039;t find anything. Thanks alot!</description>
		<content:encoded><![CDATA[<p>Excellent, I was searching the ZF documentation (which imo sucks) to find a list of available options to configure in *. ini file and couldn&#8217;t find anything. Thanks alot!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: __fabrice</title>
		<link>http://www.zendcasts.com/moving-bootstrap-code-to-configuration/2009/11/comment-page-1/#comment-10251</link>
		<dc:creator>__fabrice</dc:creator>
		<pubDate>Thu, 09 Sep 2010 09:54:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.zendcasts.com/?p=271#comment-10251</guid>
		<description>Hi, 

Great tutorial. I have a sympliest method to deal with logs, with Firebug too, in the boostrap :

protected function _initLogging() {
	$this-&gt;bootstrap(&#039;frontController&#039;);
	$logger = new Zend_Log();

	$writer = &#039;production&#039; == $this-&gt;getEnvironment() ?
	new Zend_Log_Writer_Stream(APPLICATION_PATH . &#039;/../var/logs/app.log&#039;) :
	new Zend_Log_Writer_Firebug();
	$logger-&gt;addWriter($writer);

	if (&#039;production&#039; == $this-&gt;getEnvironment()) {
		$filter = new Zend_Log_Filter_Priority(Zend_Log::CRIT);
		$logger-&gt;addFilter($filter);
	}

	$this-&gt;_logger = $logger;
	Zend_Registry::set(&#039;log&#039;, $logger);
}

Fabrice</description>
		<content:encoded><![CDATA[<p>Hi, </p>
<p>Great tutorial. I have a sympliest method to deal with logs, with Firebug too, in the boostrap :</p>
<p>protected function _initLogging() {<br />
	$this-&gt;bootstrap(&#8216;frontController&#8217;);<br />
	$logger = new Zend_Log();</p>
<p>	$writer = &#8216;production&#8217; == $this-&gt;getEnvironment() ?<br />
	new Zend_Log_Writer_Stream(APPLICATION_PATH . &#8216;/../var/logs/app.log&#8217;) :<br />
	new Zend_Log_Writer_Firebug();<br />
	$logger-&gt;addWriter($writer);</p>
<p>	if (&#8216;production&#8217; == $this-&gt;getEnvironment()) {<br />
		$filter = new Zend_Log_Filter_Priority(Zend_Log::CRIT);<br />
		$logger-&gt;addFilter($filter);<br />
	}</p>
<p>	$this-&gt;_logger = $logger;<br />
	Zend_Registry::set(&#8216;log&#8217;, $logger);<br />
}</p>
<p>Fabrice</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Shannon</title>
		<link>http://www.zendcasts.com/moving-bootstrap-code-to-configuration/2009/11/comment-page-1/#comment-6199</link>
		<dc:creator>Shannon</dc:creator>
		<pubDate>Fri, 19 Mar 2010 16:47:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.zendcasts.com/?p=271#comment-6199</guid>
		<description>Nice Tutorial,  I use NetBeans.  Has anyone had a problem with downloading empty folders if you create a module via Zend Tool on a remote system?</description>
		<content:encoded><![CDATA[<p>Nice Tutorial,  I use NetBeans.  Has anyone had a problem with downloading empty folders if you create a module via Zend Tool on a remote system?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Robert</title>
		<link>http://www.zendcasts.com/moving-bootstrap-code-to-configuration/2009/11/comment-page-1/#comment-3674</link>
		<dc:creator>Robert</dc:creator>
		<pubDate>Wed, 02 Dec 2009 21:02:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.zendcasts.com/?p=271#comment-3674</guid>
		<description>Hey 

Great tut but what about a modulename/models
and modulename/forms ?
how to set them??</description>
		<content:encoded><![CDATA[<p>Hey </p>
<p>Great tut but what about a modulename/models<br />
and modulename/forms ?<br />
how to set them??</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Calvin</title>
		<link>http://www.zendcasts.com/moving-bootstrap-code-to-configuration/2009/11/comment-page-1/#comment-3672</link>
		<dc:creator>Calvin</dc:creator>
		<pubDate>Wed, 02 Dec 2009 19:45:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.zendcasts.com/?p=271#comment-3672</guid>
		<description>great tutorials

question in module/model

I created a model user under
modules/default/models/User.php

I got the error when I try to use it, 
how do know how could I set the model path?

Fatal error: Class &#039;User&#039; not found</description>
		<content:encoded><![CDATA[<p>great tutorials</p>
<p>question in module/model</p>
<p>I created a model user under<br />
modules/default/models/User.php</p>
<p>I got the error when I try to use it,<br />
how do know how could I set the model path?</p>
<p>Fatal error: Class &#8216;User&#8217; not found</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alex</title>
		<link>http://www.zendcasts.com/moving-bootstrap-code-to-configuration/2009/11/comment-page-1/#comment-3335</link>
		<dc:creator>Alex</dc:creator>
		<pubDate>Sat, 14 Nov 2009 21:59:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.zendcasts.com/?p=271#comment-3335</guid>
		<description>Awesome tutorials dude! Easy to follow and very helpful. You should start making complete video tutorial dvd&#039;s and sell them like the guys at lynda.com

Best wishes,
Alex</description>
		<content:encoded><![CDATA[<p>Awesome tutorials dude! Easy to follow and very helpful. You should start making complete video tutorial dvd&#8217;s and sell them like the guys at lynda.com</p>
<p>Best wishes,<br />
Alex</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Johan</title>
		<link>http://www.zendcasts.com/moving-bootstrap-code-to-configuration/2009/11/comment-page-1/#comment-3328</link>
		<dc:creator>Johan</dc:creator>
		<pubDate>Sat, 14 Nov 2009 12:14:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.zendcasts.com/?p=271#comment-3328</guid>
		<description>Hi Jon,

Thanks again for your helpful tutorial. Just one question. If you want to have different layouts for your modules, why don&#039;t you put that layouts folder in the module folder, so we will have:
(1) application_default_layouts_scripts_layout.phtml
and for the admin:
(2) application_admin_layouts_scripts_layout.phtml
without any thing in your library to find out which layout to render?

kind regards,
Johan</description>
		<content:encoded><![CDATA[<p>Hi Jon,</p>
<p>Thanks again for your helpful tutorial. Just one question. If you want to have different layouts for your modules, why don&#8217;t you put that layouts folder in the module folder, so we will have:<br />
(1) application_default_layouts_scripts_layout.phtml<br />
and for the admin:<br />
(2) application_admin_layouts_scripts_layout.phtml<br />
without any thing in your library to find out which layout to render?</p>
<p>kind regards,<br />
Johan</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Froskie</title>
		<link>http://www.zendcasts.com/moving-bootstrap-code-to-configuration/2009/11/comment-page-1/#comment-3312</link>
		<dc:creator>Froskie</dc:creator>
		<pubDate>Thu, 12 Nov 2009 12:33:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.zendcasts.com/?p=271#comment-3312</guid>
		<description>Its me again. I&#039;ve found a problem during the tutorial implementation. Not exactly the &#039;moving&#039; to config, but the layout picker part. When I use the router with ini parser, it gives me an error that the file &#039;.phtml&#039; could not be found.

I&#039;ve just switched the plugin to use the postDispatch instead the preDispatch and It worked.

Just to share...</description>
		<content:encoded><![CDATA[<p>Its me again. I&#8217;ve found a problem during the tutorial implementation. Not exactly the &#8216;moving&#8217; to config, but the layout picker part. When I use the router with ini parser, it gives me an error that the file &#8216;.phtml&#8217; could not be found.</p>
<p>I&#8217;ve just switched the plugin to use the postDispatch instead the preDispatch and It worked.</p>
<p>Just to share&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Froskie</title>
		<link>http://www.zendcasts.com/moving-bootstrap-code-to-configuration/2009/11/comment-page-1/#comment-3308</link>
		<dc:creator>Froskie</dc:creator>
		<pubDate>Wed, 11 Nov 2009 19:13:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.zendcasts.com/?p=271#comment-3308</guid>
		<description>Great tutorial! But I have one problem: the bootstraps. I usually add stylesheets and javascripts through the bootstrap and whenever is need from the controllers. But the bootstrap, in this approach, works for both modules.

Is there anyway to bootstrap from modules?</description>
		<content:encoded><![CDATA[<p>Great tutorial! But I have one problem: the bootstraps. I usually add stylesheets and javascripts through the bootstrap and whenever is need from the controllers. But the bootstrap, in this approach, works for both modules.</p>
<p>Is there anyway to bootstrap from modules?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Grab</title>
		<link>http://www.zendcasts.com/moving-bootstrap-code-to-configuration/2009/11/comment-page-1/#comment-3291</link>
		<dc:creator>Grab</dc:creator>
		<pubDate>Mon, 09 Nov 2009 17:13:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.zendcasts.com/?p=271#comment-3291</guid>
		<description>Same request as Cavaller.
It would be really helpful!</description>
		<content:encoded><![CDATA[<p>Same request as Cavaller.<br />
It would be really helpful!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Cavalier</title>
		<link>http://www.zendcasts.com/moving-bootstrap-code-to-configuration/2009/11/comment-page-1/#comment-3287</link>
		<dc:creator>Cavalier</dc:creator>
		<pubDate>Sun, 08 Nov 2009 12:19:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.zendcasts.com/?p=271#comment-3287</guid>
		<description>Hello Jon,
Thank you for this video. This video is one of the most important. I would like to ask you to create video about routing languages.

To create a website with modules and language versions.

example:

http://domain.cz/en/index // english version
http://domain.cz/cz/index // czech version

And some for every modules as admin
http://domain.cz/en/admin/index // en version
http://domain.cz/cz/admin/index // cz version

I would like to create multi-language system, in which the structure of the system using the modules, as it was in this video.

Thank you very much.

Best regards

Vit Klimenko (Czech Republic)</description>
		<content:encoded><![CDATA[<p>Hello Jon,<br />
Thank you for this video. This video is one of the most important. I would like to ask you to create video about routing languages.</p>
<p>To create a website with modules and language versions.</p>
<p>example:</p>
<p><a href="http://domain.cz/en/index" rel="nofollow">http://domain.cz/en/index</a> // english version<br />
<a href="http://domain.cz/cz/index" rel="nofollow">http://domain.cz/cz/index</a> // czech version</p>
<p>And some for every modules as admin<br />
<a href="http://domain.cz/en/admin/index" rel="nofollow">http://domain.cz/en/admin/index</a> // en version<br />
<a href="http://domain.cz/cz/admin/index" rel="nofollow">http://domain.cz/cz/admin/index</a> // cz version</p>
<p>I would like to create multi-language system, in which the structure of the system using the modules, as it was in this video.</p>
<p>Thank you very much.</p>
<p>Best regards</p>
<p>Vit Klimenko (Czech Republic)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nexik</title>
		<link>http://www.zendcasts.com/moving-bootstrap-code-to-configuration/2009/11/comment-page-1/#comment-3278</link>
		<dc:creator>Nexik</dc:creator>
		<pubDate>Sat, 07 Nov 2009 10:29:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.zendcasts.com/?p=271#comment-3278</guid>
		<description>Great screencast!</description>
		<content:encoded><![CDATA[<p>Great screencast!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michau0142</title>
		<link>http://www.zendcasts.com/moving-bootstrap-code-to-configuration/2009/11/comment-page-1/#comment-3276</link>
		<dc:creator>Michau0142</dc:creator>
		<pubDate>Sat, 07 Nov 2009 01:21:07 +0000</pubDate>
		<guid isPermaLink="false">http://www.zendcasts.com/?p=271#comment-3276</guid>
		<description>absolutely great tutorial! :)</description>
		<content:encoded><![CDATA[<p>absolutely great tutorial! <img src='http://www.zendcasts.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Php / Zend Ressources &#171; Frey-IT</title>
		<link>http://www.zendcasts.com/moving-bootstrap-code-to-configuration/2009/11/comment-page-1/#comment-3269</link>
		<dc:creator>Php / Zend Ressources &#171; Frey-IT</dc:creator>
		<pubDate>Fri, 06 Nov 2009 14:47:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.zendcasts.com/?p=271#comment-3269</guid>
		<description>[...] set up MVC&#8221; and so on stuff.. That said, this basic stuff is covered nicely  on the Zend-Screencasts blog (video tutorials) [...]</description>
		<content:encoded><![CDATA[<p>[...] set up MVC&#8221; and so on stuff.. That said, this basic stuff is covered nicely  on the Zend-Screencasts blog (video tutorials) [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: developtus</title>
		<link>http://www.zendcasts.com/moving-bootstrap-code-to-configuration/2009/11/comment-page-1/#comment-3265</link>
		<dc:creator>developtus</dc:creator>
		<pubDate>Fri, 06 Nov 2009 03:42:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.zendcasts.com/?p=271#comment-3265</guid>
		<description>excelent tut! I&#039;ll try to do that</description>
		<content:encoded><![CDATA[<p>excelent tut! I&#8217;ll try to do that</p>
]]></content:encoded>
	</item>
</channel>
</rss>

