<?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>Kommentare zu: Zend Framework Tutorial Teil 5: MVC Design Pattern und Zend_View</title>
	<atom:link href="http://www.ralfeggert.de/2006/09/18/zend-framework-tutorial-mvc-design-pattern-zend_view/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ralfeggert.de/2006/09/18/zend-framework-tutorial-mvc-design-pattern-zend_view/</link>
	<description>Bloggen über das Zend Framework, PHP und anderes Gedöns</description>
	<lastBuildDate>Tue, 19 Jul 2011 09:06:27 +0200</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Von: kondor</title>
		<link>http://www.ralfeggert.de/2006/09/18/zend-framework-tutorial-mvc-design-pattern-zend_view/comment-page-1/#comment-31187</link>
		<dc:creator>kondor</dc:creator>
		<pubDate>Tue, 13 May 2008 13:21:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.ralfeggert.de/2006/09/18/zend-framework-tutorial-mvc-design-pattern-zend_view/#comment-31187</guid>
		<description>sorry noch mal show.phtml




escape($this-&gt;title); ?&gt;

escape($_SERVER[&#039;HTTP_HOST&#039;]) . $this-&gt;escape($this-&gt;baseurl); ?&gt;/&quot;&gt;


escape($this-&gt;title); ?&gt;
escape($this-&gt;article[&#039;art_title&#039;]); ?&gt;
&lt;em&gt;escape($this-&gt;article[&#039;art_cdate&#039;]); ?&gt;&lt;/em&gt;
escape($this-&gt;article[&#039;art_text&#039;]); ?&gt;

&lt;a href=&quot;article/&quot;&gt;back to list&lt;/a&gt;

</description>
		<content:encoded><![CDATA[<p>sorry noch mal show.phtml</p>
<p>escape($this-&gt;title); ?&gt;</p>
<p>escape($_SERVER['HTTP_HOST']) . $this-&gt;escape($this-&gt;baseurl); ?&gt;/&#8221;&gt;</p>
<p>escape($this-&gt;title); ?&gt;<br />
escape($this-&gt;article['art_title']); ?&gt;<br />
<em>escape($this-&gt;article['art_cdate']); ?&gt;</em><br />
escape($this-&gt;article['art_text']); ?&gt;</p>
<p><a href="article/">back to list</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>Von: kondor</title>
		<link>http://www.ralfeggert.de/2006/09/18/zend-framework-tutorial-mvc-design-pattern-zend_view/comment-page-1/#comment-31186</link>
		<dc:creator>kondor</dc:creator>
		<pubDate>Tue, 13 May 2008 13:17:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.ralfeggert.de/2006/09/18/zend-framework-tutorial-mvc-design-pattern-zend_view/#comment-31186</guid>
		<description>hi Ralf,  tolles Tutorial

ich  brauche Deine Hilfe und zwar ich habe mir ZF 1.5.1 heruntergeladen und bin dann auf deine Seite gekommen. Bis heutigen Tag (Teil 5 :)) hat es bei mir alles gut geklappt (mit kleinen Anpassungen zu 1.5.1) nun jetzt habe ich mit dem showAction und show.phtml nur Problemen

Beispiel:
[php}
Notice: Undefined index: art_text in C:\wamp\www\travelloblog\application\views\scripts\article\show.phtml on line 12
[/php}

showAction sieht bei mir so aus :
[php]
 public function showAction()
	{
	  
		$id = $this-&gt;getRequest()-&gt;getParam(&#039;id&#039;);
		$article = new ArticleModel();
		$row = $article-&gt;find($id);
		$data = $row-&gt;toArray();
     
		 
 		$controller = Zend_Registry::get(&#039;front&#039;);
 		$baseurl = $controller-&gt;getBaseUrl();
	
		

		$this-&gt;view-&gt;title = &#039;TravelloBlog - Show article&#039;;
		$this-&gt;view-&gt;article = $data;
		$this-&gt;view-&gt;baseurl = $baseurl;
	
		
		//Zend_Debug::dump($row-&gt;toArray());
		
		
	}
[/php]
 show.phtml 

[php]
 


escape($this-&gt;title); ?&gt;

escape($_SERVER[&#039;HTTP_HOST&#039;]) . $this-&gt;escape($this-&gt;baseurl); ?&gt;/&quot;&gt;


escape($this-&gt;title); ?&gt;
escape($this-&gt;article[&#039;art_title&#039;]); ?&gt;
&lt;em&gt;escape($this-&gt;article[&#039;art_cdate&#039;]); ?&gt;&lt;/em&gt;
escape($this-&gt;article[&#039;art_text&#039;]); ?&gt;

&lt;a href=&quot;article/&quot;&gt;back to list&lt;/a&gt;


[/php]

var_dump($data) zeigt 

array
  0 =&gt; 
    array
      &#039;art_id&#039; =&gt; string &#039;2&#039; (length=1)
      &#039;art_user_id&#039; =&gt; string &#039;1&#039; (length=1)
      &#039;art_cdate&#039; =&gt; string &#039;2006-08-24 18:13:45&#039; (length=19)
      &#039;art_udate&#039; =&gt; string &#039;2006-08-24 18:13:45&#039; (length=19)
      &#039;art_title&#039; =&gt; string &#039;Another test&#039; (length=12)
      &#039;art_text&#039; =&gt; string &#039;This is the second test article which contains some text.&#039; (length=57)
      &#039;art_teaser&#039; =&gt; string &#039;This is another teaser&#039; (length=22)


Habe ich etwas übersehen ??</description>
		<content:encoded><![CDATA[<p>hi Ralf,  tolles Tutorial</p>
<p>ich  brauche Deine Hilfe und zwar ich habe mir ZF 1.5.1 heruntergeladen und bin dann auf deine Seite gekommen. Bis heutigen Tag (Teil 5 :)) hat es bei mir alles gut geklappt (mit kleinen Anpassungen zu 1.5.1) nun jetzt habe ich mit dem showAction und show.phtml nur Problemen</p>
<p>Beispiel:<br />
[php}<br />
Notice: Undefined index: art_text in C:\wamp\www\travelloblog\application\views\scripts\article\show.phtml on line 12<br />
[/php}</p>
<p>showAction sieht bei mir so aus :</p>
<div class="igBar"><span id="lphp-1"><a href="#" onclick="javascript:showCodeTxt('php-1'); return false;">Quellcode (klicken)</a></span></div>
<div class="syntax_hilite"><span class="langName">PHP:</span>
<div id="php-1">
<div class="php">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">public <span style="color:#000000; font-weight:bold;">function</span> showAction<span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#006600; font-weight:bold;">&#41;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; <span style="color:#006600; font-weight:bold;">&#123;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp;&nbsp; &nbsp;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0000FF;">$id</span> = <span style="color:#0000FF;">$this</span>-&amp;gt;getRequest<span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#006600; font-weight:bold;">&#41;</span>-&amp;gt;getParam<span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#FF0000;">'id'</span><span style="color:#006600; font-weight:bold;">&#41;</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0000FF;">$article</span> = <span style="color:#000000; font-weight:bold;">new</span> ArticleModel<span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#006600; font-weight:bold;">&#41;</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0000FF;">$row</span> = <span style="color:#0000FF;">$article</span>-&amp;gt;find<span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#0000FF;">$id</span><span style="color:#006600; font-weight:bold;">&#41;</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0000FF;">$data</span> = <span style="color:#0000FF;">$row</span>-&amp;gt;toArray<span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#006600; font-weight:bold;">&#41;</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp;&nbsp; </div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;<span style="color:#0000FF;">$controller</span> = Zend_Registry::<span style="color:#006600;">get</span><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#FF0000;">'front'</span><span style="color:#006600; font-weight:bold;">&#41;</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;&nbsp; &nbsp;&nbsp; &nbsp;<span style="color:#0000FF;">$baseurl</span> = <span style="color:#0000FF;">$controller</span>-&amp;gt;getBaseUrl<span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#006600; font-weight:bold;">&#41;</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; </div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; </div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0000FF;">$this</span>-&amp;gt;view-&amp;gt;title = <span style="color:#FF0000;">'TravelloBlog - Show article'</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0000FF;">$this</span>-&amp;gt;view-&amp;gt;article = <span style="color:#0000FF;">$data</span>;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#0000FF;">$this</span>-&amp;gt;view-&amp;gt;baseurl = <span style="color:#0000FF;">$baseurl</span>;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; </div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; </div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; <span style="color:#FF9933; font-style:italic;">//Zend_Debug::dump($row-&amp;gt;toArray());</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; </div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; &nbsp; &nbsp; </div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp; &nbsp; <span style="color:#006600; font-weight:bold;">&#125;</span> </div>
</li>
</ol>
</div>
</div>
</div>
<p>
 show.phtml </p>
<div class="igBar"><span id="lphp-2"><a href="#" onclick="javascript:showCodeTxt('php-2'); return false;">Quellcode (klicken)</a></span></div>
<div class="syntax_hilite"><span class="langName">PHP:</span>
<div id="php-2">
<div class="php">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">escape<span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#0000FF;">$this</span>-&amp;gt;title<span style="color:#006600; font-weight:bold;">&#41;</span>; ?&amp;gt;</div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">&nbsp;</div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">escape<span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#0000FF;">$_SERVER</span><span style="color:#006600; font-weight:bold;">&#91;</span><span style="color:#FF0000;">'HTTP_HOST'</span><span style="color:#006600; font-weight:bold;">&#93;</span><span style="color:#006600; font-weight:bold;">&#41;</span> . <span style="color:#0000FF;">$this</span>-&amp;gt;escape<span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#0000FF;">$this</span>-&amp;gt;baseurl<span style="color:#006600; font-weight:bold;">&#41;</span>; ?&amp;gt;/<span style="color:#FF0000;">"&amp;gt;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;"></li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;"></li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#FF0000;">escape($this-&amp;gt;title); ?&amp;gt;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#FF0000;">escape($this-&amp;gt;article['art_title']); ?&amp;gt;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#FF0000;">&lt;em&gt;escape($this-&amp;gt;article['art_cdate']); ?&amp;gt;&lt;/em&gt;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#FF0000;">escape($this-&amp;gt;article['art_text']); ?&amp;gt;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;"></li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#FF0000;">&lt;a href="</span>article/<span style="color:#FF0000;">"&gt;back to list&lt;/a&gt; </span></div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
<p>var_dump($data) zeigt </p>
<p>array<br />
  0 =&gt;<br />
    array<br />
      'art_id' =&gt; string '2' (length=1)<br />
      'art_user_id' =&gt; string '1' (length=1)<br />
      'art_cdate' =&gt; string '2006-08-24 18:13:45' (length=19)<br />
      'art_udate' =&gt; string '2006-08-24 18:13:45' (length=19)<br />
      'art_title' =&gt; string 'Another test' (length=12)<br />
      'art_text' =&gt; string 'This is the second test article which contains some text.' (length=57)<br />
      'art_teaser' =&gt; string 'This is another teaser' (length=22)</p>
<p>Habe ich etwas übersehen ??</p>
]]></content:encoded>
	</item>
	<item>
		<title>Von: Florian</title>
		<link>http://www.ralfeggert.de/2006/09/18/zend-framework-tutorial-mvc-design-pattern-zend_view/comment-page-1/#comment-21606</link>
		<dc:creator>Florian</dc:creator>
		<pubDate>Sun, 17 Feb 2008 23:43:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.ralfeggert.de/2006/09/18/zend-framework-tutorial-mvc-design-pattern-zend_view/#comment-21606</guid>
		<description>Es fehlt noch ein

$front-&gt;setRouter($router);

 bzw. 

$controller-&gt;setRouter($router);

in der index.php, damit der Router funktioniert.</description>
		<content:encoded><![CDATA[<p>Es fehlt noch ein</p>
<p>$front-&gt;setRouter($router);</p>
<p> bzw. </p>
<p>$controller-&gt;setRouter($router);</p>
<p>in der index.php, damit der Router funktioniert.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Von: Christian</title>
		<link>http://www.ralfeggert.de/2006/09/18/zend-framework-tutorial-mvc-design-pattern-zend_view/comment-page-1/#comment-19386</link>
		<dc:creator>Christian</dc:creator>
		<pubDate>Fri, 01 Feb 2008 15:22:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.ralfeggert.de/2006/09/18/zend-framework-tutorial-mvc-design-pattern-zend_view/#comment-19386</guid>
		<description>Hier nur mal einige Änderungen in ZF 1.0.3:
[php]
$router-&gt;getRewriteBase() = $controller-&gt;getRequest()-&gt;getBaseUrl()
Zend_Controller_RewriteRouter() = Zend_Controller_Router_Rewrite()
Zend::register() = Zend_Registry::get()/set()
[/php]</description>
		<content:encoded><![CDATA[<p>Hier nur mal einige Änderungen in ZF 1.0.3:</p>
<div class="igBar"><span id="lphp-3"><a href="#" onclick="javascript:showCodeTxt('php-3'); return false;">Quellcode (klicken)</a></span></div>
<div class="syntax_hilite"><span class="langName">PHP:</span>
<div id="php-3">
<div class="php">
<ol>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;"><span style="color:#0000FF;">$router</span>-&amp;gt;getRewriteBase<span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#006600; font-weight:bold;">&#41;</span> = <span style="color:#0000FF;">$controller</span>-&amp;gt;getRequest<span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#006600; font-weight:bold;">&#41;</span>-&amp;gt;getBaseUrl<span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#006600; font-weight:bold;">&#41;</span></div>
</li>
<li style="font-weight: bold;color:#26536A;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">Zend_Controller_RewriteRouter<span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#006600; font-weight:bold;">&#41;</span> = Zend_Controller_Router_Rewrite<span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#006600; font-weight:bold;">&#41;</span></div>
</li>
<li style="font-family: 'Courier New', Courier, monospace; color: black; font-weight: normal; font-style: normal;color:#3A6A8B;">
<div style="font-family: 'Courier New', Courier, monospace; font-weight: normal;">Zend::<span style="color:#006600;">register</span><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#006600; font-weight:bold;">&#41;</span> = Zend_Registry::<span style="color:#006600;">get</span><span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#006600; font-weight:bold;">&#41;</span>/set<span style="color:#006600; font-weight:bold;">&#40;</span><span style="color:#006600; font-weight:bold;">&#41;</span> </div>
</li>
</ol>
</div>
</div>
</div>
<p></p>
]]></content:encoded>
	</item>
	<item>
		<title>Von: Customized Design Solutions</title>
		<link>http://www.ralfeggert.de/2006/09/18/zend-framework-tutorial-mvc-design-pattern-zend_view/comment-page-1/#comment-14837</link>
		<dc:creator>Customized Design Solutions</dc:creator>
		<pubDate>Tue, 13 Nov 2007 15:10:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.ralfeggert.de/2006/09/18/zend-framework-tutorial-mvc-design-pattern-zend_view/#comment-14837</guid>
		<description>&lt;strong&gt;Customized Design Solutions...&lt;/strong&gt;

I couldn&#039;t understand some parts of this article, but it sounds interesting...</description>
		<content:encoded><![CDATA[<p><strong>Customized Design Solutions...</strong></p>
<p>I couldn't understand some parts of this article, but it sounds interesting...</p>
]]></content:encoded>
	</item>
	<item>
		<title>Von: mentor</title>
		<link>http://www.ralfeggert.de/2006/09/18/zend-framework-tutorial-mvc-design-pattern-zend_view/comment-page-1/#comment-12708</link>
		<dc:creator>mentor</dc:creator>
		<pubDate>Wed, 03 Oct 2007 15:03:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.ralfeggert.de/2006/09/18/zend-framework-tutorial-mvc-design-pattern-zend_view/#comment-12708</guid>
		<description>Je weiter ich einsteige, desto mehr begreife ich Zusammenspiel von ZF. Geniales Konstrukt und ohne dein Tutorial wäre das nicht möglich gewesen so schnell Überblick zu bekommen.

An dieser Stelle einen riesen Dank von mir.
Einfach TOP!</description>
		<content:encoded><![CDATA[<p>Je weiter ich einsteige, desto mehr begreife ich Zusammenspiel von ZF. Geniales Konstrukt und ohne dein Tutorial wäre das nicht möglich gewesen so schnell Überblick zu bekommen.</p>
<p>An dieser Stelle einen riesen Dank von mir.<br />
Einfach TOP!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Von: Christian</title>
		<link>http://www.ralfeggert.de/2006/09/18/zend-framework-tutorial-mvc-design-pattern-zend_view/comment-page-1/#comment-2269</link>
		<dc:creator>Christian</dc:creator>
		<pubDate>Fri, 16 Feb 2007 12:41:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.ralfeggert.de/2006/09/18/zend-framework-tutorial-mvc-design-pattern-zend_view/#comment-2269</guid>
		<description>Okay hab fehler gefunden. Er mag das Options -Indexes nicht in /blog/public/files/.htaccess file nicht. Tue ich es auskommentieren lädt er die styles.css ein.</description>
		<content:encoded><![CDATA[<p>Okay hab fehler gefunden. Er mag das Options -Indexes nicht in /blog/public/files/.htaccess file nicht. Tue ich es auskommentieren lädt er die styles.css ein.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Von: Christian</title>
		<link>http://www.ralfeggert.de/2006/09/18/zend-framework-tutorial-mvc-design-pattern-zend_view/comment-page-1/#comment-2268</link>
		<dc:creator>Christian</dc:creator>
		<pubDate>Fri, 16 Feb 2007 12:29:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.ralfeggert.de/2006/09/18/zend-framework-tutorial-mvc-design-pattern-zend_view/#comment-2268</guid>
		<description>Irgendwie lädt er bei mir die stylesheets nicht rein. Hab die .htaccess files so angelegt wie beschrieben. Den Fehler mit _files hab ich auch abgeändert.</description>
		<content:encoded><![CDATA[<p>Irgendwie lädt er bei mir die stylesheets nicht rein. Hab die .htaccess files so angelegt wie beschrieben. Den Fehler mit _files hab ich auch abgeändert.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Von: Dieter</title>
		<link>http://www.ralfeggert.de/2006/09/18/zend-framework-tutorial-mvc-design-pattern-zend_view/comment-page-1/#comment-1943</link>
		<dc:creator>Dieter</dc:creator>
		<pubDate>Mon, 29 Jan 2007 22:55:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.ralfeggert.de/2006/09/18/zend-framework-tutorial-mvc-design-pattern-zend_view/#comment-1943</guid>
		<description>Bei mir fehlte in articel/index.php - analog zu show.php noch die Zeile

escape($_SERVER[&#039;HTTP_HOST&#039;]) . $this-&gt;escape($this-&gt;baseurl); ?&gt;/&quot;&gt;

Problem war bei einem direkten Aufruf von /articel/ (mit Slash am Ende. Dabei sind die Links zu show.php folgendermaßen &quot;verdoppelte&quot;: /articel/articel/show/. Habe ich den Slash weggelassen, war alles o.k.

Ich habe den Effekt übrigens mit einem eigenen, vom Tutorial adaptierten Beispiel nachgespielt - vielleicht habe ich aber auch dabei irgend was anderes falsch gemacht..;-(</description>
		<content:encoded><![CDATA[<p>Bei mir fehlte in articel/index.php - analog zu show.php noch die Zeile</p>
<p>escape($_SERVER['HTTP_HOST']) . $this-&gt;escape($this-&gt;baseurl); ?&gt;/"&gt;</p>
<p>Problem war bei einem direkten Aufruf von /articel/ (mit Slash am Ende. Dabei sind die Links zu show.php folgendermaßen "verdoppelte": /articel/articel/show/. Habe ich den Slash weggelassen, war alles o.k.</p>
<p>Ich habe den Effekt übrigens mit einem eigenen, vom Tutorial adaptierten Beispiel nachgespielt - vielleicht habe ich aber auch dabei irgend was anderes falsch gemacht..;-(</p>
]]></content:encoded>
	</item>
	<item>
		<title>Von: Nilson</title>
		<link>http://www.ralfeggert.de/2006/09/18/zend-framework-tutorial-mvc-design-pattern-zend_view/comment-page-1/#comment-1811</link>
		<dc:creator>Nilson</dc:creator>
		<pubDate>Mon, 22 Jan 2007 14:35:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.ralfeggert.de/2006/09/18/zend-framework-tutorial-mvc-design-pattern-zend_view/#comment-1811</guid>
		<description>hmm da stimmt das nicht mit dem routing.....also

1. Frage

benutzt du einen Erweiterten ActionController?

2. Frage

haste das Routing in den public Ordner gelenkt....denn bei dir versucht er einen PublicController zu laden, was mich darauf schließen lässt...dass das mod_rewrite mit dem Routing nicht übereinstimmt....denn eigentlich müsste er ja wenn du es auf den public Order gesetzt hast den IndexController.php öffnen :)


MFG Nilson</description>
		<content:encoded><![CDATA[<p>hmm da stimmt das nicht mit dem routing.....also</p>
<p>1. Frage</p>
<p>benutzt du einen Erweiterten ActionController?</p>
<p>2. Frage</p>
<p>haste das Routing in den public Ordner gelenkt....denn bei dir versucht er einen PublicController zu laden, was mich darauf schließen lässt...dass das mod_rewrite mit dem Routing nicht übereinstimmt....denn eigentlich müsste er ja wenn du es auf den public Order gesetzt hast den IndexController.php öffnen :)</p>
<p>MFG Nilson</p>
]]></content:encoded>
	</item>
</channel>
</rss>

