<?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: Your First Zend Framework Application: Day Four</title>
	<atom:link href="http://www.karlkatzke.com/your-first-zend-framework-application-day-four/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.karlkatzke.com/your-first-zend-framework-application-day-four/</link>
	<description>Geek of the Week</description>
	<lastBuildDate>Tue, 27 Sep 2011 13:39:59 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
	<item>
		<title>By: Logu</title>
		<link>http://www.karlkatzke.com/your-first-zend-framework-application-day-four/comment-page-1/#comment-571</link>
		<dc:creator>Logu</dc:creator>
		<pubDate>Wed, 23 Jul 2008 14:13:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.karlkatzke.com/?p=120#comment-571</guid>
		<description>Really good one . i got this after a long search.</description>
		<content:encoded><![CDATA[<p>Really good one . i got this after a long search.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: ben</title>
		<link>http://www.karlkatzke.com/your-first-zend-framework-application-day-four/comment-page-1/#comment-356</link>
		<dc:creator>ben</dc:creator>
		<pubDate>Thu, 29 May 2008 19:31:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.karlkatzke.com/?p=120#comment-356</guid>
		<description>this has been a very helpful tutorial.  thanks so much.

however, i had some problems that i want to share to help anyone else who might be struggling.

hitting submit with a blank login will cause a fatal error.  a simple check to see if the login is not empty will fix this.  not a big deal but just wanted to let people know.

after entering a login and pressing submit, it changed the url incorrectly.  so if i started with &#039;localhost/&#039; after hitting submit i had &#039;localhost/index/login&#039; which was correct but if i had &#039;localhost/index/login&#039; and i hit submit, i would get &#039;localhost/index/index/login&#039; by changing the action to be action=&quot;/index/login&quot; i eliminated the problem.  

also, i used the .htaccess from the zend quickstart tutorial and it worked fine:

RewriteEngine on 
RewriteRule !\.(js&#124;ico&#124;gif&#124;jpg&#124;png&#124;css)$ index.php</description>
		<content:encoded><![CDATA[<p>this has been a very helpful tutorial.  thanks so much.</p>
<p>however, i had some problems that i want to share to help anyone else who might be struggling.</p>
<p>hitting submit with a blank login will cause a fatal error.  a simple check to see if the login is not empty will fix this.  not a big deal but just wanted to let people know.</p>
<p>after entering a login and pressing submit, it changed the url incorrectly.  so if i started with &#8216;localhost/&#8217; after hitting submit i had &#8216;localhost/index/login&#8217; which was correct but if i had &#8216;localhost/index/login&#8217; and i hit submit, i would get &#8216;localhost/index/index/login&#8217; by changing the action to be action=&#8221;/index/login&#8221; i eliminated the problem.  </p>
<p>also, i used the .htaccess from the zend quickstart tutorial and it worked fine:</p>
<p>RewriteEngine on<br />
RewriteRule !\.(js|ico|gif|jpg|png|css)$ index.php</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Horst</title>
		<link>http://www.karlkatzke.com/your-first-zend-framework-application-day-four/comment-page-1/#comment-273</link>
		<dc:creator>Horst</dc:creator>
		<pubDate>Wed, 07 May 2008 09:56:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.karlkatzke.com/?p=120#comment-273</guid>
		<description>The &quot;File does not...&quot; is gone with the RewriteBase directive (see my comment for day 2.</description>
		<content:encoded><![CDATA[<p>The &#8220;File does not&#8230;&#8221; is gone with the RewriteBase directive (see my comment for day 2.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Horst</title>
		<link>http://www.karlkatzke.com/your-first-zend-framework-application-day-four/comment-page-1/#comment-259</link>
		<dc:creator>Horst</dc:creator>
		<pubDate>Sat, 03 May 2008 08:34:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.karlkatzke.com/?p=120#comment-259</guid>
		<description>and also in: 
        $adapt-&gt;setCredential(sha1($param[&#039;password&#039;]));
        $adapt-&gt;setIdentity(htmlspecialchars($param[&#039;login&#039;]));

shouldn&#039;t the $param be $params?

Besides that I get a 
&quot;File does not exist: H:/workspace.zend/ZAccred/html/index&quot;
It seems as if the mapping to the script doesn&#039;t work in
index.phtml with action=&quot;index/login&quot;. (my login.phtml
is located in folder app/views/script/index and the form is shown
correctly).</description>
		<content:encoded><![CDATA[<p>and also in:<br />
        $adapt-&gt;setCredential(sha1($param['password']));<br />
        $adapt-&gt;setIdentity(htmlspecialchars($param['login']));</p>
<p>shouldn&#8217;t the $param be $params?</p>
<p>Besides that I get a<br />
&#8220;File does not exist: H:/workspace.zend/ZAccred/html/index&#8221;<br />
It seems as if the mapping to the script doesn&#8217;t work in<br />
index.phtml with action=&#8221;index/login&#8221;. (my login.phtml<br />
is located in folder app/views/script/index and the form is shown<br />
correctly).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Horst</title>
		<link>http://www.karlkatzke.com/your-first-zend-framework-application-day-four/comment-page-1/#comment-258</link>
		<dc:creator>Horst</dc:creator>
		<pubDate>Sat, 03 May 2008 08:04:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.karlkatzke.com/?p=120#comment-258</guid>
		<description>Hi Karl,

really helpful tutorial!
You have a typo above: it should be 
$this-&gt;_forward(&#039;login&#039;);
(with the underscore)

Greets,
Horst</description>
		<content:encoded><![CDATA[<p>Hi Karl,</p>
<p>really helpful tutorial!<br />
You have a typo above: it should be<br />
$this-&gt;_forward(&#8216;login&#8217;);<br />
(with the underscore)</p>
<p>Greets,<br />
Horst</p>
]]></content:encoded>
	</item>
</channel>
</rss>

