<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress/2.3.3" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>
<channel>
	<title>Comments on: &#8216;noViewRendered&#8217; will result in &#8216;viewRendered&#8217;</title>
	<link>http://www.zfguide.com/2008/01/22/noviewrendered-will-result-in-viewrendered/</link>
	<description>Support for php&#124;architect's Guide to Programming with Zend Framework</description>
	<pubDate>Tue, 07 Oct 2008 04:37:18 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.3</generator>
		<item>
		<title>By: Cory</title>
		<link>http://www.zfguide.com/2008/01/22/noviewrendered-will-result-in-viewrendered/#comment-306</link>
		<dc:creator>Cory</dc:creator>
		<pubDate>Sun, 14 Sep 2008 08:09:32 +0000</pubDate>
		<guid>http://www.zfguide.com/2008/01/22/noviewrendered-will-result-in-viewrendered/#comment-306</guid>
		<description>I can't seem to get passed an error in the second example. Maybe I'm not generating a token as the flash messenger is printing out the "I'm sorry" bit.
Can't seem to figure it out. I have gone over the code with a fine tooth comb and even downloaded the example code but nothing seems to work.</description>
		<content:encoded><![CDATA[<p>I can&#8217;t seem to get passed an error in the second example. Maybe I&#8217;m not generating a token as the flash messenger is printing out the &#8220;I&#8217;m sorry&#8221; bit.<br />
Can&#8217;t seem to figure it out. I have gone over the code with a fine tooth comb and even downloaded the example code but nothing seems to work.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: pigrl gxyaubl</title>
		<link>http://www.zfguide.com/2008/01/22/noviewrendered-will-result-in-viewrendered/#comment-305</link>
		<dc:creator>pigrl gxyaubl</dc:creator>
		<pubDate>Sat, 13 Sep 2008 10:52:29 +0000</pubDate>
		<guid>http://www.zfguide.com/2008/01/22/noviewrendered-will-result-in-viewrendered/#comment-305</guid>
		<description>rowpg yfcduo urshf sxjmzdhuv plyknig ekuxhd ejxafq</description>
		<content:encoded><![CDATA[<p>rowpg yfcduo urshf sxjmzdhuv plyknig ekuxhd ejxafq</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Chuck Burgess</title>
		<link>http://www.zfguide.com/2008/01/22/noviewrendered-will-result-in-viewrendered/#comment-185</link>
		<dc:creator>Chuck Burgess</dc:creator>
		<pubDate>Tue, 01 Jul 2008 18:58:53 +0000</pubDate>
		<guid>http://www.zfguide.com/2008/01/22/noviewrendered-will-result-in-viewrendered/#comment-185</guid>
		<description>I'd suggest a specific front-page post about the short tags issue, since it seems to be On by default in a basic PHP/Apache installation.  After not getting the chapter 2 code to run, I'd checked the errata posts but didn't see anything, and so went back to looking for typos in my code.  I only just now found the short tags issue here in the comments about an unrelated original post.

If it needs to feel like an actual "correction", maybe say it should be added to the php.ini settings to check on page 6 (below the allow_url_fopen setting).

This is my first exposure to ZF, so I'm giving it a fresh eye ;)</description>
		<content:encoded><![CDATA[<p>I&#8217;d suggest a specific front-page post about the short tags issue, since it seems to be On by default in a basic PHP/Apache installation.  After not getting the chapter 2 code to run, I&#8217;d checked the errata posts but didn&#8217;t see anything, and so went back to looking for typos in my code.  I only just now found the short tags issue here in the comments about an unrelated original post.</p>
<p>If it needs to feel like an actual &#8220;correction&#8221;, maybe say it should be added to the php.ini settings to check on page 6 (below the allow_url_fopen setting).</p>
<p>This is my first exposure to ZF, so I&#8217;m giving it a fresh eye ;)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Cal Evans</title>
		<link>http://www.zfguide.com/2008/01/22/noviewrendered-will-result-in-viewrendered/#comment-42</link>
		<dc:creator>Cal Evans</dc:creator>
		<pubDate>Fri, 25 Apr 2008 02:06:49 +0000</pubDate>
		<guid>http://www.zfguide.com/2008/01/22/noviewrendered-will-result-in-viewrendered/#comment-42</guid>
		<description>@Scott,

I've not yet tried setting up a project in ZSE and the directory structure in the book was current as of the time of publication. (As with anything on the web, beyond that single day, it's a crap shoot)  :)

That having been said, all the pathing in the sample application is being handled in the bootstrap:

$lib_paths = array();
$lib_paths[] = "c:/web/htdocs/application";
$lib_paths[] = "c:/web/htdocs/lib";

and

    $frontController-&gt;setControllerDirectory('c:/web/htdocs/application/controllers/');
 (That's from example2, it was the one I had handy) 
So if your issue is in the path, you should be able to resolve it by adjusting one of those options.

Feel free to drop me an email at cal at calevans.com or if you see me on AIM:VirtualCIO if you are still having issues.

=C= 

p.s. yep, Amsterdam but that was thanks to friends like IBuildings.  :)</description>
		<content:encoded><![CDATA[<p>@Scott,</p>
<p>I&#8217;ve not yet tried setting up a project in ZSE and the directory structure in the book was current as of the time of publication. (As with anything on the web, beyond that single day, it&#8217;s a crap shoot)  :)</p>
<p>That having been said, all the pathing in the sample application is being handled in the bootstrap:</p>
<p>$lib_paths = array();<br />
$lib_paths[] = &#8220;c:/web/htdocs/application&#8221;;<br />
$lib_paths[] = &#8220;c:/web/htdocs/lib&#8221;;</p>
<p>and</p>
<p>    $frontController->setControllerDirectory(&#8217;c:/web/htdocs/application/controllers/&#8217;);<br />
 (That&#8217;s from example2, it was the one I had handy)<br />
So if your issue is in the path, you should be able to resolve it by adjusting one of those options.</p>
<p>Feel free to drop me an email at cal at calevans.com or if you see me on AIM:VirtualCIO if you are still having issues.</p>
<p>=C= </p>
<p>p.s. yep, Amsterdam but that was thanks to friends like IBuildings.  :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Scott</title>
		<link>http://www.zfguide.com/2008/01/22/noviewrendered-will-result-in-viewrendered/#comment-41</link>
		<dc:creator>Scott</dc:creator>
		<pubDate>Fri, 25 Apr 2008 01:46:20 +0000</pubDate>
		<guid>http://www.zfguide.com/2008/01/22/noviewrendered-will-result-in-viewrendered/#comment-41</guid>
		<description>@Cal &#38; @CharlesH

I'm hitting the same problems CharlesH has reported. So, thanks for posting!

I am stuck at the same point CharlesH reported on February 23rd, 2008 at 7:53 pm re: posting to /index/post.

Cal, could you please help? I am using Zend Studio for Eclipse and the default ZF directory structure it creates, I would like to understand why this (submitting the form) is not resolving properly, and how to fix it...vs. manually creating the directory structure and losing that feature of ZSE in future projects.

Many thanks!

btw, Amsterdam?? Wow...I need to go publish a book</description>
		<content:encoded><![CDATA[<p>@Cal &amp; @CharlesH</p>
<p>I&#8217;m hitting the same problems CharlesH has reported. So, thanks for posting!</p>
<p>I am stuck at the same point CharlesH reported on February 23rd, 2008 at 7:53 pm re: posting to /index/post.</p>
<p>Cal, could you please help? I am using Zend Studio for Eclipse and the default ZF directory structure it creates, I would like to understand why this (submitting the form) is not resolving properly, and how to fix it&#8230;vs. manually creating the directory structure and losing that feature of ZSE in future projects.</p>
<p>Many thanks!</p>
<p>btw, Amsterdam?? Wow&#8230;I need to go publish a book</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Cal Evans</title>
		<link>http://www.zfguide.com/2008/01/22/noviewrendered-will-result-in-viewrendered/#comment-40</link>
		<dc:creator>Cal Evans</dc:creator>
		<pubDate>Thu, 24 Apr 2008 23:35:56 +0000</pubDate>
		<guid>http://www.zfguide.com/2008/01/22/noviewrendered-will-result-in-viewrendered/#comment-40</guid>
		<description>@Scott (and all)

Ok, now that I'm back from my trip to Amsterdam, my goal is to test and fix all the sample code to work with 1.5. There may be issues with it.  Let me take a look at it this weekend and I'll post an update.

=C=</description>
		<content:encoded><![CDATA[<p>@Scott (and all)</p>
<p>Ok, now that I&#8217;m back from my trip to Amsterdam, my goal is to test and fix all the sample code to work with 1.5. There may be issues with it.  Let me take a look at it this weekend and I&#8217;ll post an update.</p>
<p>=C=</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Scott</title>
		<link>http://www.zfguide.com/2008/01/22/noviewrendered-will-result-in-viewrendered/#comment-39</link>
		<dc:creator>Scott</dc:creator>
		<pubDate>Thu, 24 Apr 2008 22:53:50 +0000</pubDate>
		<guid>http://www.zfguide.com/2008/01/22/noviewrendered-will-result-in-viewrendered/#comment-39</guid>
		<description>@CharlesH,

If you're on a Mac, check out Skim. It's a great PDF reader/annotator. You can copy in errata, highlight, strike out, etc...and it's free.</description>
		<content:encoded><![CDATA[<p>@CharlesH,</p>
<p>If you&#8217;re on a Mac, check out Skim. It&#8217;s a great PDF reader/annotator. You can copy in errata, highlight, strike out, etc&#8230;and it&#8217;s free.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Scott</title>
		<link>http://www.zfguide.com/2008/01/22/noviewrendered-will-result-in-viewrendered/#comment-38</link>
		<dc:creator>Scott</dc:creator>
		<pubDate>Thu, 24 Apr 2008 21:19:53 +0000</pubDate>
		<guid>http://www.zfguide.com/2008/01/22/noviewrendered-will-result-in-viewrendered/#comment-38</guid>
		<description>Crap, I'm sorry. It was a typo in my $frontController-&#62;setControllerDirectory string. Sorry! Great book, thanks!!!</description>
		<content:encoded><![CDATA[<p>Crap, I&#8217;m sorry. It was a typo in my $frontController-&gt;setControllerDirectory string. Sorry! Great book, thanks!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Scott</title>
		<link>http://www.zfguide.com/2008/01/22/noviewrendered-will-result-in-viewrendered/#comment-37</link>
		<dc:creator>Scott</dc:creator>
		<pubDate>Thu, 24 Apr 2008 21:11:10 +0000</pubDate>
		<guid>http://www.zfguide.com/2008/01/22/noviewrendered-will-result-in-viewrendered/#comment-37</guid>
		<description>Hi Cal, thanks for the quick response. Yes, I tried using the downloaded source code, too (modified for my environment) as well as the downloaded Zend framework 'as is'. My default ZF is 1.5.1. Thanks</description>
		<content:encoded><![CDATA[<p>Hi Cal, thanks for the quick response. Yes, I tried using the downloaded source code, too (modified for my environment) as well as the downloaded Zend framework &#8216;as is&#8217;. My default ZF is 1.5.1. Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Cal Evans</title>
		<link>http://www.zfguide.com/2008/01/22/noviewrendered-will-result-in-viewrendered/#comment-36</link>
		<dc:creator>Cal Evans</dc:creator>
		<pubDate>Thu, 24 Apr 2008 20:57:12 +0000</pubDate>
		<guid>http://www.zfguide.com/2008/01/22/noviewrendered-will-result-in-viewrendered/#comment-36</guid>
		<description>@Scott,

Greetz!

Did you download the source code from here on the website?

Also, what version of Zend Framework are you working with?

=C=</description>
		<content:encoded><![CDATA[<p>@Scott,</p>
<p>Greetz!</p>
<p>Did you download the source code from here on the website?</p>
<p>Also, what version of Zend Framework are you working with?</p>
<p>=C=</p>
]]></content:encoded>
	</item>
</channel>
</rss>
