<?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: Kohana PHP Framework</title>
	<atom:link href="http://jimmyli.net/2009/02/kohana-php-framework/feed/" rel="self" type="application/rss+xml" />
	<link>http://jimmyli.net/2009/02/kohana-php-framework/</link>
	<description>Join the dark side</description>
	<lastBuildDate>Wed, 08 Sep 2010 07:45:31 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: Jim Li</title>
		<link>http://jimmyli.net/2009/02/kohana-php-framework/comment-page-1/#comment-269</link>
		<dc:creator>Jim Li</dc:creator>
		<pubDate>Thu, 03 Sep 2009 07:01:07 +0000</pubDate>
		<guid isPermaLink="false">http://jimmyli.net/?p=19#comment-269</guid>
		<description>Hi Jimmy (the evil one)!

The Kohana cascading idea sounds pretty smart, and surely when they roll out V3, the rewrite will make it better! I might get a copy and have a play when I get a chance. 

I was just like you before I started using Zend, trying to get things organised in my own way, and build up my own utility libraries from here and there (ooo ... phpclasses is such a paradise.)

But I then soon run in to function name collision, and php version compatibility issues ... and at the same time I started reading about pattern designs and php best practices. 

So ... one day I decided to ditch all my old libraries and start from scratch! That says I picked Zend as my framework. 

Zend gives me a clean core with heaps of features, the ones I like and use heavily are ACL, Auth, Registry, DB (Zend&#039;s PDO abstraction classes, not ORM), 2 step view, action helpers, view helpers and so on so forth ...

The advantage is basically just like Kohana, things are organised well. and the advantage for using Zend is it&#039;s a use-at-will framework, you can use its libraries even in your throw away apps. ie, never need to use phpmailer anyway !

another massive plus for zend is its integrated phpUnit testing libraries! 

anyway, once you&#039;ve got your blog tidied up, i&#039;ll exchange more ideas with you as we go. 

Cheers!</description>
		<content:encoded><![CDATA[<p>Hi Jimmy (the evil one)!</p>
<p>The Kohana cascading idea sounds pretty smart, and surely when they roll out V3, the rewrite will make it better! I might get a copy and have a play when I get a chance. </p>
<p>I was just like you before I started using Zend, trying to get things organised in my own way, and build up my own utility libraries from here and there (ooo &#8230; phpclasses is such a paradise.)</p>
<p>But I then soon run in to function name collision, and php version compatibility issues &#8230; and at the same time I started reading about pattern designs and php best practices. </p>
<p>So &#8230; one day I decided to ditch all my old libraries and start from scratch! That says I picked Zend as my framework. </p>
<p>Zend gives me a clean core with heaps of features, the ones I like and use heavily are ACL, Auth, Registry, DB (Zend&#8217;s PDO abstraction classes, not ORM), 2 step view, action helpers, view helpers and so on so forth &#8230;</p>
<p>The advantage is basically just like Kohana, things are organised well. and the advantage for using Zend is it&#8217;s a use-at-will framework, you can use its libraries even in your throw away apps. ie, never need to use phpmailer anyway !</p>
<p>another massive plus for zend is its integrated phpUnit testing libraries! </p>
<p>anyway, once you&#8217;ve got your blog tidied up, i&#8217;ll exchange more ideas with you as we go. </p>
<p>Cheers!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jimmy</title>
		<link>http://jimmyli.net/2009/02/kohana-php-framework/comment-page-1/#comment-268</link>
		<dc:creator>Jimmy</dc:creator>
		<pubDate>Wed, 02 Sep 2009 07:54:10 +0000</pubDate>
		<guid isPermaLink="false">http://jimmyli.net/?p=19#comment-268</guid>
		<description>Hi Jimmy! Sorry for the late reply.
That is an interesting fact. Though Jimmy Li&#039;s not really my real name (my dev alias), but close enough to my real name. I&#039;m sure you&#039;d be able to find it. ;)

Kohana is actually the first and really the only PHP framework I&#039;ve delved into somewhat deeply, so it&#039;s hard to compare to others, like Zend. Many says that the Kohana docs are not very good, which is true, but it&#039;s fairly simple to understand. I&#039;ve taken a look at Zend&#039;s before and it looked more complicated.

Things like Authentication and ORM are okay. I&#039;ve tried it but didn&#039;t really like it much. I generally use only MySQL for web and don&#039;t really need ORM for other database compatibility. I especially like the Cascading Directory system, which is great if you have more than one application that uses Kohana. You can place the Kohana &quot;system&quot; (Kohana core) at the root with the rest of your websites, and within each website directory is your Kohana &quot;application&quot; (application core) directory. Therefore, when you have to upgrade Kohana, you just replace it with the latest &quot;system&quot; directory and all websites will use it. (Of course I test it out before making it production.) Files &quot;cascade&quot; downwards (or upwards?), so if something&#039;s missing in &quot;application&quot; (like a config file), it&#039;ll use the one in &quot;system&quot; by default. And both of the system and application folders sit under the public directory, which is a security plus. Only the index.php and other public files are on the public directory. This is not a out-of-the-box set up of Kohana, but very easy to setup in advance since the index.php has references to the system and application directories that&#039;s easy to modify.

I guess it&#039;s hard for me to explain other things in details. I mainly use a MVC framework and PHP OOP to keep things organized and only use few of the framework libraries (Database, Session, View) and some helper methods. But so far I&#039;ve been able to keep things really organized, make clean SEO friendly sites, and include additional libraries with no problems (like TCPDF, PHPMailer, etc.).

If you don&#039;t mind, would you point out some of the things you like about the Zend Framework? (I&#039;m taking a look at your blog now also to kind of get a sense of it.)

Oh, all this is about the current version, Kohana v2.3.4. v3.0 will be a complete rewrite so I&#039;m not sure how things will be there.

I really gotta get this blog cleaned up from it&#039;s default WP setup. When I do I&#039;ll add a link to yours. :)</description>
		<content:encoded><![CDATA[<p>Hi Jimmy! Sorry for the late reply.<br />
That is an interesting fact. Though Jimmy Li&#8217;s not really my real name (my dev alias), but close enough to my real name. I&#8217;m sure you&#8217;d be able to find it. <img src='http://jimmyli.net/wp/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
<p>Kohana is actually the first and really the only PHP framework I&#8217;ve delved into somewhat deeply, so it&#8217;s hard to compare to others, like Zend. Many says that the Kohana docs are not very good, which is true, but it&#8217;s fairly simple to understand. I&#8217;ve taken a look at Zend&#8217;s before and it looked more complicated.</p>
<p>Things like Authentication and ORM are okay. I&#8217;ve tried it but didn&#8217;t really like it much. I generally use only MySQL for web and don&#8217;t really need ORM for other database compatibility. I especially like the Cascading Directory system, which is great if you have more than one application that uses Kohana. You can place the Kohana &#8220;system&#8221; (Kohana core) at the root with the rest of your websites, and within each website directory is your Kohana &#8220;application&#8221; (application core) directory. Therefore, when you have to upgrade Kohana, you just replace it with the latest &#8220;system&#8221; directory and all websites will use it. (Of course I test it out before making it production.) Files &#8220;cascade&#8221; downwards (or upwards?), so if something&#8217;s missing in &#8220;application&#8221; (like a config file), it&#8217;ll use the one in &#8220;system&#8221; by default. And both of the system and application folders sit under the public directory, which is a security plus. Only the index.php and other public files are on the public directory. This is not a out-of-the-box set up of Kohana, but very easy to setup in advance since the index.php has references to the system and application directories that&#8217;s easy to modify.</p>
<p>I guess it&#8217;s hard for me to explain other things in details. I mainly use a MVC framework and PHP OOP to keep things organized and only use few of the framework libraries (Database, Session, View) and some helper methods. But so far I&#8217;ve been able to keep things really organized, make clean SEO friendly sites, and include additional libraries with no problems (like TCPDF, PHPMailer, etc.).</p>
<p>If you don&#8217;t mind, would you point out some of the things you like about the Zend Framework? (I&#8217;m taking a look at your blog now also to kind of get a sense of it.)</p>
<p>Oh, all this is about the current version, Kohana v2.3.4. v3.0 will be a complete rewrite so I&#8217;m not sure how things will be there.</p>
<p>I really gotta get this blog cleaned up from it&#8217;s default WP setup. When I do I&#8217;ll add a link to yours. <img src='http://jimmyli.net/wp/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jim Li</title>
		<link>http://jimmyli.net/2009/02/kohana-php-framework/comment-page-1/#comment-267</link>
		<dc:creator>Jim Li</dc:creator>
		<pubDate>Sun, 30 Aug 2009 10:34:07 +0000</pubDate>
		<guid isPermaLink="false">http://jimmyli.net/?p=19#comment-267</guid>
		<description>Hi Jimmy, such a coincidence that we not just share the same name, same profession and also the same issue with the ntwdblib.dll driver issue :) 

I came across your blog pretty much straight after I posted an article on my own blog about the windows mssql drive issue.

Anyway, about the kohana framework you are using, how are you going with it? I use Zend Framework myself, and will be very interested to see comparisons.</description>
		<content:encoded><![CDATA[<p>Hi Jimmy, such a coincidence that we not just share the same name, same profession and also the same issue with the ntwdblib.dll driver issue <img src='http://jimmyli.net/wp/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  </p>
<p>I came across your blog pretty much straight after I posted an article on my own blog about the windows mssql drive issue.</p>
<p>Anyway, about the kohana framework you are using, how are you going with it? I use Zend Framework myself, and will be very interested to see comparisons.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
