<?xml version="1.0" encoding="UTF-8"?><!-- generator="WordPress/2.9.1" -->
<rss version="0.92">
<channel>
	<title>eingko weblog</title>
	<link>http://www.eingko.net/blog</link>
	<description>a web developer's thoughts and musings</description>
	<lastBuildDate>Wed, 09 Dec 2009 23:42:36 +0000</lastBuildDate>
	<docs>http://backend.userland.com/rss092</docs>
	<language>en</language>
	
	<item>
		<title>Getting Smarty 3.0 to work with Zend Framework 1.9</title>
		<description><![CDATA[Assuming you&#8217;re using the method demonstrated in the Zend Framework Manual, the first thing you need is to configure the Zend AutoLoader. Add this to the index.php file in your public directory:
// Configure autoloader
require_once 'Zend/Loader/Autoloader.php';
$autoloader = Zend_Loader_Autoloader::getInstance();
// Require Smarty Engine
require_once 'Smarty/Smarty.class.php'; // Assuming that you have the Smarty engine at "library/Smarty"
$autoloader->pushAutoloader('Smarty', 'smartyAutoload');
Change the following line [...]]]></description>
		<link>http://www.eingko.net/blog/2009/11/10/getting-smarty-3-0-to-work-with-zend-framework-1-9/</link>
			</item>
	<item>
		<title>Zend Framework Migration and File Not Found</title>
		<description><![CDATA[Recently I went through and upgraded a website from Zend Framework 1.7 to the latest 1.9 minor version. Everything worked great for the most part (aside from a minor code change involving Zend Filter for requests), but there was one significant change that was a bit of a hassle to fix (i.e. &#8220;File not found&#8221; [...]]]></description>
		<link>http://www.eingko.net/blog/2009/11/05/zend-framework-migration-and-file-not-found/</link>
			</item>
	<item>
		<title>Zend Framework on MediaTemple DV</title>
		<description><![CDATA[I&#8217;ve done this a few times already, and it seems every time I make the same time-wasting mistakes. So here&#8217;s the process quick and dirty (be sure to follow the links if there&#8217;s a point you don&#8217;t understand or know how to do):

SSH into your website, navigate to your virtual host directory &#8211; the directory [...]]]></description>
		<link>http://www.eingko.net/blog/2009/10/31/zend-framework-on-mediatemple-dv/</link>
			</item>
	<item>
		<title>TweenLite Version 11 Rocks My Socks!</title>
		<description><![CDATA[Jack Doyle is a genius (Grant Skinner also deserves mention, a genius in his own right). TweenLite (and TweenMax, and TweenNano, and Tween&#8230;) proves, yet again, that it is the best ActionScript tweening engine in the world. I haven&#8217;t been this excited about a tweening engine in a while. Check out the new features of [...]]]></description>
		<link>http://www.eingko.net/blog/2009/10/29/tweenlite-version-11-rocks-my-socks/</link>
			</item>
	<item>
		<title>Browser Comic</title>
		<description><![CDATA[Funniest thing I&#8217;ve seen in a while:  http://www.flickr.com/photos/robotjohnny/3629069606/sizes/l/
]]></description>
		<link>http://www.eingko.net/blog/2009/08/03/browser-comic/</link>
			</item>
	<item>
		<title>Zend Framework 1.7 Now Available</title>
		<description><![CDATA[Zend Framework 1.7 has been released!
Here&#8217;s what I&#8217;m excited about:

Zend_Amf with support for AMF0 and AMF3 protocols
Performance enhancements in Zend_Loader, Zend_Controller, and server components
File transfer enhancements
&#8220;In addition, almost three hundred bugs have been fixed&#8221;

Download it today!
]]></description>
		<link>http://www.eingko.net/blog/2008/11/21/zend-framework-17-now-available/</link>
			</item>
	<item>
		<title>Internet Explorer, Flash, Alignment Gotcha</title>
		<description><![CDATA[I ran into a rather annoying issue the other day related to content alignment in Flash; as usual, this problem exists exclusively in Internet Explorer. To be more specific, it is an issue with how the Flash Player ActiveX control is written.
If you are aligning content in Flash that uses the Stage width or height [...]]]></description>
		<link>http://www.eingko.net/blog/2008/11/19/internet-explorer-flash-alignment-gotcha/</link>
			</item>
	<item>
		<title>T_PAAMAYIM_NEKUDOTAYIM</title>
		<description><![CDATA[Parse error: syntax error, unexpected &#8216;)&#8217;, expecting T_PAAMAYIM_NEKUDOTAYIM in &#8230;
I encountered this weird PHP error today; if it happens to you it&#8217;s probably because you forgot to declare a variable by leaving off the &#8216;$&#8217; prefix (e.g., &#8216;myVar&#8217; instead of &#8216;$myVar&#8217;).  More info here:  http://en.wikipedia.org/wiki/Paamayim_Nekudotayim.
Obviously, it&#8217;s a fairly cryptic error message; albeit its [...]]]></description>
		<link>http://www.eingko.net/blog/2008/10/22/t_paamayim_nekudotayim/</link>
			</item>
	<item>
		<title>Zend Framework &amp; Flash</title>
		<description><![CDATA[Here&#8217;s a quick little &#8220;gotcha&#8221; when using the Zend PHP Framework:
If you plan on using Flash at all (i.e., SWF or FLV files) be sure to append the necessary extensions the .htaccess file in the &#8220;public&#8221; folder to the rewrite rule:
RewriteEngine On
RewriteRule !\.(js&#124;ico&#124;gif&#124;jpg&#124;png&#124;css&#124;swf&#124;flv)$ index.php
Note the added &#8220;swf&#8221; and &#8220;flv&#8221; extensions.  Otherwise access to these [...]]]></description>
		<link>http://www.eingko.net/blog/2008/07/30/zend-framework-flash/</link>
			</item>
	<item>
		<title>ActionScript 2.0 NetStream Annoyance</title>
		<description><![CDATA[Here&#8217;s a &#8220;heads up&#8221; to anyone who may be pulling his/her hair out wondering why NetStream won&#8217;t load an FLV.  For whatever reason (I&#8217;m guessing it&#8217;s a bug), if you have a strongly-typed NetStream within a function, it will not work.
For example, the following code will work on &#8220;_root&#8221;:
var my_video:Video; // my_video is a [...]]]></description>
		<link>http://www.eingko.net/blog/2008/05/21/actionscript-20-netstream-annoyance/</link>
			</item>
</channel>
</rss>
