<?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 2: Systemaufbau mit Bootstrap Datei und der Zend Basisklasse</title>
	<atom:link href="http://www.ralfeggert.de/2006/08/28/systemaufbau-mit-bootstrap-datei-und-der-zend-basisklasse/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ralfeggert.de/2006/08/28/systemaufbau-mit-bootstrap-datei-und-der-zend-basisklasse/</link>
	<description>Bloggen über das Zend Framework, PHP und anderes Gedöns</description>
	<lastBuildDate>Mon, 02 Aug 2010 11:46:52 +0200</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Von: Christian</title>
		<link>http://www.ralfeggert.de/2006/08/28/systemaufbau-mit-bootstrap-datei-und-der-zend-basisklasse/comment-page-2/#comment-33493</link>
		<dc:creator>Christian</dc:creator>
		<pubDate>Thu, 25 Mar 2010 12:56:17 +0000</pubDate>
		<guid isPermaLink="false">http://www.ralfeggert.de/2006/08/28/systemaufbau-mit-bootstrap-datei-und-der-zend-basisklasse/#comment-33493</guid>
		<description>Nur so als Information, die Version die hier genannt wird (0.6.0) ist seit gut 3 Jahren nicht mehr aktuell ;-)
Man nehme sich Version 1.10.2 und dieses Tutorial hier: http://akrabat.com/zend-framework-tutorial/
Schwups - schon ist man wieder aktuell (für ein paar wochen zumindest) :)</description>
		<content:encoded><![CDATA[<p>Nur so als Information, die Version die hier genannt wird (0.6.0) ist seit gut 3 Jahren nicht mehr aktuell ;-)<br />
Man nehme sich Version 1.10.2 und dieses Tutorial hier: <a href="http://akrabat.com/zend-framework-tutorial/" rel="nofollow"></a><a href='http://akrabat.com/zend-framework-tutorial/'>http://akrabat.com/zend-framework-tutorial/</a><br />
Schwups &#8211; schon ist man wieder aktuell (für ein paar wochen zumindest) :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>Von: Patrick</title>
		<link>http://www.ralfeggert.de/2006/08/28/systemaufbau-mit-bootstrap-datei-und-der-zend-basisklasse/comment-page-2/#comment-33483</link>
		<dc:creator>Patrick</dc:creator>
		<pubDate>Thu, 10 Dec 2009 12:59:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.ralfeggert.de/2006/08/28/systemaufbau-mit-bootstrap-datei-und-der-zend-basisklasse/#comment-33483</guid>
		<description>Kurze Frage, ich nehme dies als Einstieg in Zend Framework und als Wiedereinstieg in Php, bei meiner Zend V. gibts keine Zend.php welche soll ich nun nehmen ?</description>
		<content:encoded><![CDATA[<p>Kurze Frage, ich nehme dies als Einstieg in Zend Framework und als Wiedereinstieg in Php, bei meiner Zend V. gibts keine Zend.php welche soll ich nun nehmen ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Von: Duffman</title>
		<link>http://www.ralfeggert.de/2006/08/28/systemaufbau-mit-bootstrap-datei-und-der-zend-basisklasse/comment-page-2/#comment-33481</link>
		<dc:creator>Duffman</dc:creator>
		<pubDate>Tue, 24 Nov 2009 12:05:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.ralfeggert.de/2006/08/28/systemaufbau-mit-bootstrap-datei-und-der-zend-basisklasse/#comment-33481</guid>
		<description>ich bin langsam am verzweifeln. bei dem aufruf http://localhost/jobapp/public wird die IndexController::indexAction aufgerufen, wie es auch sein soll. nur sobald ich eine andere action wie http://localhost/jobapp/public/add oder http://localhost/jobapp/public/index/add meint der frontcontroller das er den jobapp-controller nicht finden kann. was auch verstaendlich ist, da es solche einen nicht gibt. der front-controller glaubt, dass http://localhost/ ein controller-verzeichnis ist und sucht dort nach den entsprechenden controller, nur hab ich das nirgends angegeben.

$this-&gt;frontController = Zend_Controller_Front::getInstance();
$this-&gt;frontController-&gt;throwExceptions($config-&gt;resources-&gt;frontController-&gt;throwException);
$this-&gt;frontController-&gt;returnResponse(true);
$this-&gt;frontController-&gt;setControllerDirectory($config-&gt;resources-&gt;frontController-&gt;controllerDirectory);
$this-&gt;frontController-&gt;setParam(&#039;registry&#039;, $this-&gt;registry);

$config-&gt;resources-&gt;frontController-&gt;controllerDirectory steht in einer ini-datei: c:\xampp\htdocs\jobapp\application\controller

bitte um hilfe</description>
		<content:encoded><![CDATA[<p>ich bin langsam am verzweifeln. bei dem aufruf <a href="http://localhost/jobapp/public" rel="nofollow"></a><a href='http://localhost/jobapp/public'>http://localhost/jobapp/public</a> wird die IndexController::indexAction aufgerufen, wie es auch sein soll. nur sobald ich eine andere action wie <a href="http://localhost/jobapp/public/add" rel="nofollow"></a><a href='http://localhost/jobapp/public/add'>http://localhost/jobapp/public/add</a> oder <a href="http://localhost/jobapp/public/index/add" rel="nofollow"></a><a href='http://localhost/jobapp/public/index/add'>http://localhost/jobapp/public/index/add</a> meint der frontcontroller das er den jobapp-controller nicht finden kann. was auch verstaendlich ist, da es solche einen nicht gibt. der front-controller glaubt, dass <a href="http://localhost/" rel="nofollow"></a><a href='http://localhost/'>http://localhost/</a> ein controller-verzeichnis ist und sucht dort nach den entsprechenden controller, nur hab ich das nirgends angegeben.</p>
<p>$this-&gt;frontController = Zend_Controller_Front::getInstance();<br />
$this-&gt;frontController-&gt;throwExceptions($config-&gt;resources-&gt;frontController-&gt;throwException);<br />
$this-&gt;frontController-&gt;returnResponse(true);<br />
$this-&gt;frontController-&gt;setControllerDirectory($config-&gt;resources-&gt;frontController-&gt;controllerDirectory);<br />
$this-&gt;frontController-&gt;setParam(&#8217;registry&#8217;, $this-&gt;registry);</p>
<p>$config-&gt;resources-&gt;frontController-&gt;controllerDirectory steht in einer ini-datei: c:\xampp\htdocs\jobapp\application\controller</p>
<p>bitte um hilfe</p>
]]></content:encoded>
	</item>
	<item>
		<title>Von: Hans</title>
		<link>http://www.ralfeggert.de/2006/08/28/systemaufbau-mit-bootstrap-datei-und-der-zend-basisklasse/comment-page-2/#comment-33480</link>
		<dc:creator>Hans</dc:creator>
		<pubDate>Sat, 14 Nov 2009 16:54:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.ralfeggert.de/2006/08/28/systemaufbau-mit-bootstrap-datei-und-der-zend-basisklasse/#comment-33480</guid>
		<description>Hab ein Problem: Bei mir gibts keine Zend.php????!!!!! Wo ist die den hingekommen?</description>
		<content:encoded><![CDATA[<p>Hab ein Problem: Bei mir gibts keine Zend.php????!!!!! Wo ist die den hingekommen?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Von: Jörg</title>
		<link>http://www.ralfeggert.de/2006/08/28/systemaufbau-mit-bootstrap-datei-und-der-zend-basisklasse/comment-page-2/#comment-33358</link>
		<dc:creator>Jörg</dc:creator>
		<pubDate>Wed, 17 Jun 2009 13:29:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.ralfeggert.de/2006/08/28/systemaufbau-mit-bootstrap-datei-und-der-zend-basisklasse/#comment-33358</guid>
		<description>Hallo zusammen,

eine Frage zum Thema VirualHost: Ich prefixe alle Developer ServerNames mit dem Kürzel &quot;dev.&quot;. Also z.B.: ServerName dev.irgendwas.de.
Wie kann ich diese Art von Hosts im Firefox für einen eingestellten Proxy umgehen? Habe im Feld &quot;Kein Proxy für:&quot; bereits &quot;dev.&quot; eingetragen, was aber leider nicht funktioniert.
Dank und Gruß
Jörg</description>
		<content:encoded><![CDATA[<p>Hallo zusammen,</p>
<p>eine Frage zum Thema VirualHost: Ich prefixe alle Developer ServerNames mit dem Kürzel &#8220;dev.&#8221;. Also z.B.: ServerName dev.irgendwas.de.<br />
Wie kann ich diese Art von Hosts im Firefox für einen eingestellten Proxy umgehen? Habe im Feld &#8220;Kein Proxy für:&#8221; bereits &#8220;dev.&#8221; eingetragen, was aber leider nicht funktioniert.<br />
Dank und Gruß<br />
Jörg</p>
]]></content:encoded>
	</item>
	<item>
		<title>Von: Johny</title>
		<link>http://www.ralfeggert.de/2006/08/28/systemaufbau-mit-bootstrap-datei-und-der-zend-basisklasse/comment-page-2/#comment-33283</link>
		<dc:creator>Johny</dc:creator>
		<pubDate>Wed, 25 Feb 2009 16:32:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.ralfeggert.de/2006/08/28/systemaufbau-mit-bootstrap-datei-und-der-zend-basisklasse/#comment-33283</guid>
		<description>Gut geschriebener Artikel, gefällt mir nimmt auch rücksicht auf ausnahmen</description>
		<content:encoded><![CDATA[<p>Gut geschriebener Artikel, gefällt mir nimmt auch rücksicht auf ausnahmen</p>
]]></content:encoded>
	</item>
	<item>
		<title>Von: markus</title>
		<link>http://www.ralfeggert.de/2006/08/28/systemaufbau-mit-bootstrap-datei-und-der-zend-basisklasse/comment-page-2/#comment-15571</link>
		<dc:creator>markus</dc:creator>
		<pubDate>Wed, 21 Nov 2007 00:18:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.ralfeggert.de/2006/08/28/systemaufbau-mit-bootstrap-datei-und-der-zend-basisklasse/#comment-15571</guid>
		<description>Hallo,

Ich habe auch mit der Ini Klasse ein paar Probleme. Wäre nett, wenn jemand die aktuelle Version der index.php posten könnte. Ansonsten bin ich von Tutorial echt begeistert! :)

Danke, markus</description>
		<content:encoded><![CDATA[<p>Hallo,</p>
<p>Ich habe auch mit der Ini Klasse ein paar Probleme. Wäre nett, wenn jemand die aktuelle Version der index.php posten könnte. Ansonsten bin ich von Tutorial echt begeistert! :)</p>
<p>Danke, markus</p>
]]></content:encoded>
	</item>
	<item>
		<title>Von: Guido</title>
		<link>http://www.ralfeggert.de/2006/08/28/systemaufbau-mit-bootstrap-datei-und-der-zend-basisklasse/comment-page-2/#comment-15060</link>
		<dc:creator>Guido</dc:creator>
		<pubDate>Thu, 15 Nov 2007 11:05:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.ralfeggert.de/2006/08/28/systemaufbau-mit-bootstrap-datei-und-der-zend-basisklasse/#comment-15060</guid>
		<description>Hallo, 

für das ZendFramework 1.0.2 sind in der index.php folgende Änderungen notwendig:

aus:
if (!class_exists(&#039;Zend&#039;)) require_once &#039;Zend.php&#039;;
wird:
if (!class_exists(&#039;Zend_Loader&#039;)) require_once &#039;Zend/Loader.php&#039;;

aus:
Zend::loadClass($class);
wird:
Zend_Loader::autoload($class);

aus:
$router = new Zend_Controller_RewriteRouter();
wird:
$router = new Zend_Controller_Router_Rewrite();</description>
		<content:encoded><![CDATA[<p>Hallo, </p>
<p>für das ZendFramework 1.0.2 sind in der index.php folgende Änderungen notwendig:</p>
<p>aus:<br />
if (!class_exists(&#8217;Zend&#8217;)) require_once &#8216;Zend.php&#8217;;<br />
wird:<br />
if (!class_exists(&#8217;Zend_Loader&#8217;)) require_once &#8216;Zend/Loader.php&#8217;;</p>
<p>aus:<br />
Zend::loadClass($class);<br />
wird:<br />
Zend_Loader::autoload($class);</p>
<p>aus:<br />
$router = new Zend_Controller_RewriteRouter();<br />
wird:<br />
$router = new Zend_Controller_Router_Rewrite();</p>
]]></content:encoded>
	</item>
	<item>
		<title>Von: Simon</title>
		<link>http://www.ralfeggert.de/2006/08/28/systemaufbau-mit-bootstrap-datei-und-der-zend-basisklasse/comment-page-2/#comment-13895</link>
		<dc:creator>Simon</dc:creator>
		<pubDate>Fri, 02 Nov 2007 10:10:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.ralfeggert.de/2006/08/28/systemaufbau-mit-bootstrap-datei-und-der-zend-basisklasse/#comment-13895</guid>
		<description>Ja würde mich auch interessieren ob schon jemand etwas mehr Feedback hat wie man dieses Tutorial trotzdem zum laufen bekommt.</description>
		<content:encoded><![CDATA[<p>Ja würde mich auch interessieren ob schon jemand etwas mehr Feedback hat wie man dieses Tutorial trotzdem zum laufen bekommt.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Von: Stefan</title>
		<link>http://www.ralfeggert.de/2006/08/28/systemaufbau-mit-bootstrap-datei-und-der-zend-basisklasse/comment-page-2/#comment-11812</link>
		<dc:creator>Stefan</dc:creator>
		<pubDate>Wed, 05 Sep 2007 19:51:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.ralfeggert.de/2006/08/28/systemaufbau-mit-bootstrap-datei-und-der-zend-basisklasse/#comment-11812</guid>
		<description>http://framework.zend.com/releases/ZendFramework-0.6.0.zip</description>
		<content:encoded><![CDATA[<p><a href="http://framework.zend.com/releases/ZendFramework-0.6.0.zip" rel="nofollow"></a><a href='http://framework.zend.com/releases/ZendFramework-0.6.0.zip'>http://framework.zend.com/releases/ZendFramework-0.6.0.zip</a></p>
]]></content:encoded>
	</item>
</channel>
</rss>
