<?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: Zend Framework 1.5 Praise, and Free Skeleton App Download</title>
	<link>http://joeyadams.net/2008/04/21/zend-framework-15-praise-and-free-skeleton-app-download/</link>
	<description>Southern Fried Programming</description>
	<pubDate>Fri, 05 Dec 2008 13:05:55 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.3.3</generator>
		<item>
		<title>By: butaarcu</title>
		<link>http://joeyadams.net/2008/04/21/zend-framework-15-praise-and-free-skeleton-app-download/#comment-74</link>
		<dc:creator>butaarcu</dc:creator>
		<pubDate>Thu, 26 Jun 2008 19:46:09 +0000</pubDate>
		<guid>http://joeyadams.net/2008/04/21/zend-framework-15-praise-and-free-skeleton-app-download/#comment-74</guid>
		<description>Many thanks for you!</description>
		<content:encoded><![CDATA[<p>Many thanks for you!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joey</title>
		<link>http://joeyadams.net/2008/04/21/zend-framework-15-praise-and-free-skeleton-app-download/#comment-72</link>
		<dc:creator>Joey</dc:creator>
		<pubDate>Thu, 26 Jun 2008 10:49:13 +0000</pubDate>
		<guid>http://joeyadams.net/2008/04/21/zend-framework-15-praise-and-free-skeleton-app-download/#comment-72</guid>
		<description>Hey butaarcu, Thanks for that, I have been messing around changing the server around getting ready for my move to versioning and the problem was caused by improperly ordered virtual hosts. So you were actually accessing one of my projects that is under development!!! eek.

All fixed now.</description>
		<content:encoded><![CDATA[<p>Hey butaarcu, Thanks for that, I have been messing around changing the server around getting ready for my move to versioning and the problem was caused by improperly ordered virtual hosts. So you were actually accessing one of my projects that is under development!!! eek.</p>
<p>All fixed now.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: butaarcu</title>
		<link>http://joeyadams.net/2008/04/21/zend-framework-15-praise-and-free-skeleton-app-download/#comment-71</link>
		<dc:creator>butaarcu</dc:creator>
		<pubDate>Wed, 25 Jun 2008 16:25:51 +0000</pubDate>
		<guid>http://joeyadams.net/2008/04/21/zend-framework-15-praise-and-free-skeleton-app-download/#comment-71</guid>
		<description>Hello!

I've noticed an error: the link attached to this post, cannot be downloaded:S

Please, correct the problem, because i want to take a look at your skeleton app for educational reason!

Thank you!</description>
		<content:encoded><![CDATA[<p>Hello!</p>
<p>I&#8217;ve noticed an error: the link attached to this post, cannot be downloaded:S</p>
<p>Please, correct the problem, because i want to take a look at your skeleton app for educational reason!</p>
<p>Thank you!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andre Santos</title>
		<link>http://joeyadams.net/2008/04/21/zend-framework-15-praise-and-free-skeleton-app-download/#comment-50</link>
		<dc:creator>Andre Santos</dc:creator>
		<pubDate>Fri, 23 May 2008 15:49:32 +0000</pubDate>
		<guid>http://joeyadams.net/2008/04/21/zend-framework-15-praise-and-free-skeleton-app-download/#comment-50</guid>
		<description>Hi again.

I have a small problem and I believe you can solve this with ease.

I've created a class with the login form on modules/default/forms/LoginForm.php and I'm trying to include it in the UserController wich is on modules/default/controllers/UserController.php.

What I'm doing is:

require_once '../forms/LoginForm.php';

But this doesn't work as I expected. I already made it work including the forms dir in the include path but this is not a good solution.

Anyone knows how can I make it work ?</description>
		<content:encoded><![CDATA[<p>Hi again.</p>
<p>I have a small problem and I believe you can solve this with ease.</p>
<p>I&#8217;ve created a class with the login form on modules/default/forms/LoginForm.php and I&#8217;m trying to include it in the UserController wich is on modules/default/controllers/UserController.php.</p>
<p>What I&#8217;m doing is:</p>
<p>require_once &#8216;../forms/LoginForm.php&#8217;;</p>
<p>But this doesn&#8217;t work as I expected. I already made it work including the forms dir in the include path but this is not a good solution.</p>
<p>Anyone knows how can I make it work ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joey</title>
		<link>http://joeyadams.net/2008/04/21/zend-framework-15-praise-and-free-skeleton-app-download/#comment-49</link>
		<dc:creator>Joey</dc:creator>
		<pubDate>Fri, 23 May 2008 07:26:13 +0000</pubDate>
		<guid>http://joeyadams.net/2008/04/21/zend-framework-15-praise-and-free-skeleton-app-download/#comment-49</guid>
		<description>I have not created an app with the skeleton yet, so have not had ability to troubleshoot things like this, so it is good to come across them.

I took a look at it, and modified a existing idea for a front controller plugin, this sets include path to  the global models directory located in  application/models , also the module models directory located in  application/modules/modulename/models .

So now you can put your models that multiple modules need to use in the global directory, and models specific to each module into the modules/models directory, and just use the Zend_Loader::loadClass('Model.php'); to include with ease.

I have uploaded the fixed app.

Thank you.</description>
		<content:encoded><![CDATA[<p>I have not created an app with the skeleton yet, so have not had ability to troubleshoot things like this, so it is good to come across them.</p>
<p>I took a look at it, and modified a existing idea for a front controller plugin, this sets include path to  the global models directory located in  application/models , also the module models directory located in  application/modules/modulename/models .</p>
<p>So now you can put your models that multiple modules need to use in the global directory, and models specific to each module into the modules/models directory, and just use the Zend_Loader::loadClass(&#8217;Model.php&#8217;); to include with ease.</p>
<p>I have uploaded the fixed app.</p>
<p>Thank you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andre</title>
		<link>http://joeyadams.net/2008/04/21/zend-framework-15-praise-and-free-skeleton-app-download/#comment-48</link>
		<dc:creator>Andre</dc:creator>
		<pubDate>Wed, 21 May 2008 09:46:58 +0000</pubDate>
		<guid>http://joeyadams.net/2008/04/21/zend-framework-15-praise-and-free-skeleton-app-download/#comment-48</guid>
		<description>Looking at the structure, I cant see how the Models for each Module is Auto loaded. or does this need to be done manually per controller?</description>
		<content:encoded><![CDATA[<p>Looking at the structure, I cant see how the Models for each Module is Auto loaded. or does this need to be done manually per controller?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andre Santos</title>
		<link>http://joeyadams.net/2008/04/21/zend-framework-15-praise-and-free-skeleton-app-download/#comment-47</link>
		<dc:creator>Andre Santos</dc:creator>
		<pubDate>Tue, 20 May 2008 15:24:12 +0000</pubDate>
		<guid>http://joeyadams.net/2008/04/21/zend-framework-15-praise-and-free-skeleton-app-download/#comment-47</guid>
		<description>It's not a virtualhost, it's just a simple Alias.

Anyway, I found the solution, if you have an Alias like this:

Alias /cartazleiria/ "d:/workspace/cartazleiria/public/" 


    Options Indexes FollowSymLinks MultiViews
    AllowOverride all
        Order allow,deny
    Allow from all


The .htaccess file should be:

RewriteEngine on
RewriteBase /cartazleiria
RewriteRule !\.(js&#124;ico&#124;gif&#124;jpg&#124;png&#124;css)$ index.php

So many time for such a small change... It's always the same thing! :D</description>
		<content:encoded><![CDATA[<p>It&#8217;s not a virtualhost, it&#8217;s just a simple Alias.</p>
<p>Anyway, I found the solution, if you have an Alias like this:</p>
<p>Alias /cartazleiria/ &#8220;d:/workspace/cartazleiria/public/&#8221; </p>
<p>    Options Indexes FollowSymLinks MultiViews<br />
    AllowOverride all<br />
        Order allow,deny<br />
    Allow from all</p>
<p>The .htaccess file should be:</p>
<p>RewriteEngine on<br />
RewriteBase /cartazleiria<br />
RewriteRule !\.(js|ico|gif|jpg|png|css)$ index.php</p>
<p>So many time for such a small change&#8230; It&#8217;s always the same thing! <img src='http://joeyadams.net/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joey</title>
		<link>http://joeyadams.net/2008/04/21/zend-framework-15-praise-and-free-skeleton-app-download/#comment-46</link>
		<dc:creator>Joey</dc:creator>
		<pubDate>Tue, 20 May 2008 12:33:23 +0000</pubDate>
		<guid>http://joeyadams.net/2008/04/21/zend-framework-15-praise-and-free-skeleton-app-download/#comment-46</guid>
		<description>If you mean virtual hosts, make sure the vhosts config has  allow override all inside the directory definition. Here is an excerpt from my httpd-vhosts.conf

# Dev
&#60;VirtualHost *:80&#62;
    DocumentRoot /home/blah/dev/public
    ServerName dev.joeyadams.net
    ServerAlias www.dev.joeyadams.net
&#60;Directory &#34;/home/blah/dev/public&#34;&#62;
  Order allow,deny
  Allow from all
  AllowOverride all
&#60;/Directory&#62;
&#60;/VirtualHost&#62;</description>
		<content:encoded><![CDATA[<p>If you mean virtual hosts, make sure the vhosts config has  allow override all inside the directory definition. Here is an excerpt from my httpd-vhosts.conf</p>
<p># Dev<br />
&lt;VirtualHost *:80&gt;<br />
    DocumentRoot /home/blah/dev/public<br />
    ServerName dev.joeyadams.net<br />
    ServerAlias <a href="http://www.dev.joeyadams.net" rel="nofollow">http://www.dev.joeyadams.net</a><br />
&lt;Directory &quot;/home/blah/dev/public&quot;&gt;<br />
  Order allow,deny<br />
  Allow from all<br />
  AllowOverride all<br />
&lt;/Directory&gt;<br />
&lt;/VirtualHost&gt;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andre Santos</title>
		<link>http://joeyadams.net/2008/04/21/zend-framework-15-praise-and-free-skeleton-app-download/#comment-42</link>
		<dc:creator>Andre Santos</dc:creator>
		<pubDate>Mon, 19 May 2008 22:08:33 +0000</pubDate>
		<guid>http://joeyadams.net/2008/04/21/zend-framework-15-praise-and-free-skeleton-app-download/#comment-42</guid>
		<description>I've just found out that the URL rewriting is in fact working both in windows and Linux when I place my websites on the document root of apache.

If I have an Alias, the rewriting does not work.

How can a simples Alias make this happen ?</description>
		<content:encoded><![CDATA[<p>I&#8217;ve just found out that the URL rewriting is in fact working both in windows and Linux when I place my websites on the document root of apache.</p>
<p>If I have an Alias, the rewriting does not work.</p>
<p>How can a simples Alias make this happen ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andre Santos</title>
		<link>http://joeyadams.net/2008/04/21/zend-framework-15-praise-and-free-skeleton-app-download/#comment-40</link>
		<dc:creator>Andre Santos</dc:creator>
		<pubDate>Mon, 19 May 2008 00:34:00 +0000</pubDate>
		<guid>http://joeyadams.net/2008/04/21/zend-framework-15-praise-and-free-skeleton-app-download/#comment-40</guid>
		<description>Thanks for the response.

I installed ZendCore and could not make the rewrite work.

I tried on my Fedora 9 install and it works like a charm...

This is really weird...</description>
		<content:encoded><![CDATA[<p>Thanks for the response.</p>
<p>I installed ZendCore and could not make the rewrite work.</p>
<p>I tried on my Fedora 9 install and it works like a charm&#8230;</p>
<p>This is really weird&#8230;</p>
]]></content:encoded>
	</item>
</channel>
</rss>
