<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>GoodLux Media &#187; Uncategorized</title>
	<atom:link href="http://goodluxmedia.com/category/uncategorized/feed/" rel="self" type="application/rss+xml" />
	<link>http://goodluxmedia.com</link>
	<description>systems integration ~ programming ~ consultation</description>
	<lastBuildDate>Mon, 24 Aug 2009 21:50:09 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Using Oracle Driver with Zend Framework</title>
		<link>http://goodluxmedia.com/2009/08/24/using-oracle-driver-with-zend-framework/</link>
		<comments>http://goodluxmedia.com/2009/08/24/using-oracle-driver-with-zend-framework/#comments</comments>
		<pubDate>Mon, 24 Aug 2009 21:49:42 +0000</pubDate>
		<dc:creator>rob kunkle</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://goodluxmedia.com/?p=194</guid>
		<description><![CDATA[Spent far too much time fiddling around with configuration options to get this to work. 
In your application.ini file, you will need something that looks like this.




resources.db.adapter = Oracle


resources.db.params.username = myusername&#160; &#160; &#160; &#160;


resources.db.params.password = mypassword


resources.db.params.dbname = my.host.name.com:portnumber/mydbinstance




notice that you don&#8217;t need a &#8220;resources.db.paramas.host&#8221; line here. The &#8220;mydbinstance&#8221; part comes from your tnsnames.ora file&#8230;




mydbinstance =


&#160; [...]]]></description>
			<content:encoded><![CDATA[<p>Spent far too much time fiddling around with configuration options to get this to work. </p>
<p>In your application.ini file, you will need something that looks like this.</p>
<div class="codesnip-container" >
<div class="codesnip" style="font-family: monospace;">
<ol>
<li class="li1">
<div class="de1">resources.db.adapter = Oracle</div>
</li>
<li class="li1">
<div class="de1">resources.db.params.username = myusername&nbsp; &nbsp; &nbsp; &nbsp;</div>
</li>
<li class="li1">
<div class="de1">resources.db.params.password = mypassword</div>
</li>
<li class="li1">
<div class="de1">resources.db.params.dbname = my.host.name.com:portnumber/mydbinstance</div>
</li>
</ol>
</div>
</div>
<p>notice that you don&#8217;t need a &#8220;resources.db.paramas.host&#8221; line here. The &#8220;mydbinstance&#8221; part comes from your tnsnames.ora file&#8230;</p>
<div class="codesnip-container" >
<div class="codesnip" style="font-family: monospace;">
<ol>
<li class="li1">
<div class="de1">mydbinstance =</div>
</li>
<li class="li1">
<div class="de1">&nbsp; (DESCRIPTION =</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; (ADDRESS = (PROTOCOL = TCP)(HOST = my.host.name.com)(PORT = 1771))</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; (CONNECT_DATA =</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; (SERVER = DEDICATED)</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; (SERVICE_NAME = mydbinstance)</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; )</div>
</li>
<li class="li1">
<div class="de1">&nbsp; )</div>
</li>
</ol>
</div>
</div>
<p>Hope this saves someone some time!</p>
]]></content:encoded>
			<wfw:commentRss>http://goodluxmedia.com/2009/08/24/using-oracle-driver-with-zend-framework/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Configuring vhosts and fixing zf.exe tool with initial setup of Zend Server CE and Zend Framework 1.9.1 on Windows.</title>
		<link>http://goodluxmedia.com/2009/08/14/getting-started-with-zend-server-ce-and-zend-framework-1-9-1-on-windows/</link>
		<comments>http://goodluxmedia.com/2009/08/14/getting-started-with-zend-server-ce-and-zend-framework-1-9-1-on-windows/#comments</comments>
		<pubDate>Fri, 14 Aug 2009 17:18:33 +0000</pubDate>
		<dc:creator>rob kunkle</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://goodluxmedia.com/?p=183</guid>
		<description><![CDATA[I&#8217;ve just spent a few hours wading through what should otherwise be simple. 
First of all, download Zend Server CE you can get it here:
http://www.zend.com/en/products/server-ce/downloads
I chose the PHP 5.3 version. 
Start the install, and choose custom install if you want to also install MySQL Server and PhpMyAdmin.
Once the install is complete, you would think that [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve just spent a few hours wading through what should otherwise be simple. </p>
<p>First of all, download Zend Server CE you can get it here:</p>
<p><a href="http://www.zend.com/en/products/server-ce/downloads">http://www.zend.com/en/products/server-ce/downloads</a></p>
<p>I chose the PHP 5.3 version. </p>
<p>Start the install, and choose custom install if you want to also install MySQL Server and PhpMyAdmin.</p>
<p>Once the install is complete, you would think that you would be ready to go&#8230;Should be simple&#8230;Zend Framework on running Zend Server. Not so!</p>
<p>First of all, at the time of this writing, Zend Framework 1.9.0 and 1.9.1 have a bug which makes it impossible to use the command line tool to do anything other than create a project on a windows system. If you are installing on Windows, you will need to manually  add a few lines to the</p>
<div class="codesnip-container" >Zend/Tool/Project/Provider/Abstract.php</div>
<p>file. This is a pain, but I&#8217;m sure it will be fixed soon.</p>
<p>You can get all the details the fix for it here:</p>
<p><a href="http://zendframework.com/issues/browse/ZF-7465">http://zendframework.com/issues/browse/ZF-7465</a></p>
<p>I used the second fix, and it works fine. If you don&#8217;t patch this, you will get an error when you try to create a module after you&#8217;ve created your project, and you will probably tear your hair out finding the problems.</p>
<p>Next, once you patch, and create a project, you would think that it would be easy to create a virtual host for your new project. After unsuccessfully trying many different snippets of advice, I finally came across this, buried in the &#8220;best practices&#8221; part of the installation guide here:</p>
<p><a href="http://files.zend.com/help/Zend-Server-Community-Edition/configuring_zend_framework.htm">http://files.zend.com/help/Zend-Server-Community-Edition/configuring_zend_framework.htm</a></p>
<p>First, assuming that you created your project in the web root of your new installation, and your project is called &#8220;yourprojectname&#8221; you would   cut and paste the following text directly into the very bottom of your  </p>
<div class="codesnip-container" >C:\Program Files\Zend\Apache2\conf\http.conf</div>
<p>file. I&#8217;m not sure why this is considered a best practice (as opposed to using  /extra/httpd-vhost.conf file), but it works.</p>
<div class="codesnip-container" >
<div class="codesnip" style="font-family: monospace;">
<ol>
<li class="li1">
<div class="de1">Listen 84</div>
</li>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
<li class="li1">
<div class="de1"><span class="sc2">&lt;VirtualHost *:<span class="nu0">84</span>&gt;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; DocumentRoot &quot;C:\Program Files\Zend\Apache2\htdocs\yourprojectname\public&quot;</div>
</li>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; <span class="sc2">&lt;Directory <span class="st0">&quot;C:\Program Files\Zend\Apache2\htdocs\yourprojectname\public&quot;</span><span class="kw2">&gt;</span></span></div>
</li>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; Order allow,deny</div>
</li>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; Allow from all</div>
</li>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; AllowOverride all</div>
</li>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
<li class="li1">
<div class="de1"><span class="sc2"><span class="kw2">&lt;</span>/Directory&gt;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
<li class="li1">
<div class="de1"><span class="sc2"><span class="kw2">&lt;</span>/VirtualHost&gt;</span></div>
</li>
</ol>
</div>
</div>
<p>Now your new project will be served on http://localhost:84/</p>
<p>Next, you need to have an .htaccess file in the \public directory of the new project you just created. So if the module you created was &#8220;mynewmodule&#8221;, you would create a file called .htaccess in </p>
<p>C:\Program Files\Zend\Apache2\htdocs\mynewproject\public</p>
<p>If there is already contents in that file, you should comment out existing code first, then past this below:</p>
<div class="codesnip-container" ># public/.htaccess</p>
<p>RewriteEngine On</p>
<p>RewriteCond %{REQUEST_FILENAME} -s [OR]</p>
<p>RewriteCond %{REQUEST_FILENAME} -l [OR]</p>
<p>RewriteCond %{REQUEST_FILENAME} -d</p>
<p>RewriteRule ^.*$ &#8211; [NC,L]</p>
<p>RewriteRule ^.*$ /index.php [NC,L]</p></div>
<p>Whew! That&#8217;s it! </p>
<p>Remember to restart your apache server, you should now see your zend framework homepage at http://localhost:84/</p>
<p>You should be able to get started coding now!</p>
]]></content:encoded>
			<wfw:commentRss>http://goodluxmedia.com/2009/08/14/getting-started-with-zend-server-ce-and-zend-framework-1-9-1-on-windows/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Dead Simple as3flickr, Flickr API Example</title>
		<link>http://goodluxmedia.com/2009/04/14/dead-simple-as3flickr-flickr-api-example/</link>
		<comments>http://goodluxmedia.com/2009/04/14/dead-simple-as3flickr-flickr-api-example/#comments</comments>
		<pubDate>Tue, 14 Apr 2009 10:19:30 +0000</pubDate>
		<dc:creator>rob kunkle</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://news.goodluxmedia.com/?p=3</guid>
		<description><![CDATA[I&#8217;ve finally had a chance to start messing around with the ActionScript 3 Flickr API, as3flickr. One thing I noted right away is that there aren&#8217;t too many dead simple examples of how to use the library. Most of the examples out there dive right into authentication, which isn&#8217;t a good place for the newbie [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve finally had a chance to start messing around with the ActionScript 3 Flickr API, as3flickr. One thing I noted right away is that there aren&#8217;t too many dead simple examples of how to use the library. Most of the examples out there dive right into authentication, which isn&#8217;t a good place for the newbie to start as it isn&#8217;t required for many applictions.</p>
<p>A better place to start, in my option, is to just get a set of photos, and return data about the photos. Extremely useful, dead simple. Here goes.</p>
<div class="codesnip-container" >
<div class="codesnip" style="font-family: monospace;">
<ol>
<li class="li1">
<div class="de1"><span class="kw3">public</span> <span class="kw3">static</span> <span class="kw2">var</span> FLICKR_API_KEY:<span class="kw3">String</span> &nbsp; &nbsp; &nbsp; &nbsp; = <span class="st0">&quot;whatever your api string is&quot;</span>;</div>
</li>
<li class="li1">
<div class="de1"><span class="kw3">public</span> <span class="kw3">static</span> <span class="kw2">var</span> FLICKR_API_SECRET:<span class="kw3">String</span> &nbsp; &nbsp; &nbsp;= <span class="st0">&quot;whatever your api secret is&quot;</span>;</div>
</li>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
<li class="li1">
<div class="de1"><span class="kw3">public</span> <span class="kw2">var</span> flickrService:FlickrService = <span class="kw2">new</span> FlickrService<span class="br0">&#40;</span>FLICKR_API_KEY<span class="br0">&#41;</span>;</div>
</li>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
<li class="li1">
<div class="de1"><span class="kw3">private</span> <span class="kw2">function</span> startFlickr<span class="br0">&#40;</span><span class="br0">&#41;</span>:<span class="kw3">void</span></div>
</li>
<li class="li1">
<div class="de1"><span class="br0">&#123;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; </div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; flickrService.<span class="me1">secret</span> = FLICKR_API_SECRET;</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; flickrService.<span class="me1">addEventListener</span><span class="br0">&#40;</span> FlickrResultEvent.<span class="me1">PHOTOSETS_GET_PHOTOS</span>, onPhotosetGetPhotos<span class="br0">&#41;</span>;</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; flickrService.<span class="me1">photosets</span>.<span class="me1">getPhotos</span><span class="br0">&#40;</span><span class="st0">&#8216;a set id number goes here&#8217;</span><span class="br0">&#41;</span>;</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; </div>
</li>
<li class="li1">
<div class="de1"><span class="br0">&#125;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
<li class="li1">
<div class="de1"><span class="kw3">private</span> <span class="kw2">function</span> onPhotosetGetPhotos <span class="br0">&#40;</span>event:FlickrResultEvent<span class="br0">&#41;</span>:<span class="kw3">void</span> </div>
</li>
<li class="li1">
<div class="de1"><span class="br0">&#123;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; <span class="kw2">var</span> photoSet:PhotoSet = event.<span class="kw3">data</span>.<span class="me1">photoSet</span>;&nbsp; &nbsp; </div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; photos = <span class="kw2">new</span> ArrayCollection <span class="br0">&#40;</span>photoSet.<span class="me1">photos</span><span class="br0">&#41;</span>;</div>
</li>
<li class="li1">
<div class="de1">&nbsp;</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; <span class="kw1">for</span> each <span class="br0">&#40;</span><span class="kw2">var</span> p:Photo <span class="kw1">in</span> photos<span class="br0">&#41;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; <span class="br0">&#123;</span></div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="kw3">trace</span><span class="br0">&#40;</span>p.<span class="me1">title</span><span class="br0">&#41;</span>;</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; <span class="kw3">trace</span><span class="br0">&#40;</span>p.<span class="me1">id</span><span class="br0">&#41;</span>;</div>
</li>
<li class="li1">
<div class="de1">&nbsp; &nbsp; &nbsp; &nbsp; <span class="br0">&#125;</span></div>
</li>
<li class="li1">
<div class="de1"><span class="br0">&#125;</span></div>
</li>
</ol>
</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://goodluxmedia.com/2009/04/14/dead-simple-as3flickr-flickr-api-example/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Changing the default setting for del.icio.us bookmarks app to Do Not Share</title>
		<link>http://goodluxmedia.com/2008/06/10/changing-the-default-setting-for-delicious-bookmarks-ap-to-do-not-share/</link>
		<comments>http://goodluxmedia.com/2008/06/10/changing-the-default-setting-for-delicious-bookmarks-ap-to-do-not-share/#comments</comments>
		<pubDate>Tue, 10 Jun 2008 09:22:07 +0000</pubDate>
		<dc:creator>rob kunkle</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.massivemissive.com/?p=7</guid>
		<description><![CDATA[When I tag a page using del.icio.us, I always have to click &#8220;do not share&#8221; if I don&#8217;t want the link showing up on facebook and elsewhere. Annoying!
This can be changed.
Open firefox. Type in
about:config
into the address bar. Right click anywhere on the page. From the menu that appears, select New-&#62;Interger.
It will ask for a name [...]]]></description>
			<content:encoded><![CDATA[<p>When I tag a page using del.icio.us, I always have to click &#8220;do not share&#8221; if I don&#8217;t want the link showing up on facebook and elsewhere. Annoying!</p>
<p>This can be changed.</p>
<p>Open firefox. Type in</p>
<p>about:config</p>
<p>into the address bar. Right click anywhere on the page. From the menu that appears, select New-&gt;Interger.</p>
<p>It will ask for a name of the new preference. Enter:</p>
<p>extensions.ybookmarks@yahoo.sharemode</p>
<p>It will ask for a value next. Type</p>
<p>1</p>
<p>That&#8217;s it! Now the delicious app will default to having the &#8220;Do Not Share&#8221; option selected. I really wish they made this more straight forward.</p>
]]></content:encoded>
			<wfw:commentRss>http://goodluxmedia.com/2008/06/10/changing-the-default-setting-for-delicious-bookmarks-ap-to-do-not-share/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>what is this all about?</title>
		<link>http://goodluxmedia.com/2008/03/07/what-is-this-all-about/</link>
		<comments>http://goodluxmedia.com/2008/03/07/what-is-this-all-about/#comments</comments>
		<pubDate>Fri, 07 Mar 2008 09:36:15 +0000</pubDate>
		<dc:creator>rob kunkle</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.massivemissive.com/?p=3</guid>
		<description><![CDATA[So I&#8217;ve been wanting, for some time now, to put together a blog, the sole purpose of which is to record my geeky finds from around the internet. Others have saved me countless hours by posting their solutions, I just want to give something back.
My plan here is to not waste a lot of time [...]]]></description>
			<content:encoded><![CDATA[<p>So I&#8217;ve been wanting, for some time now, to put together a blog, the sole purpose of which is to record my geeky finds from around the internet. Others have saved me countless hours by posting their solutions, I just want to give something back.</p>
<p>My plan here is to not waste a lot of time customizing this site; I spent 10 minutes getting this blog in place and I don&#8217;t want to spend any more time. I don&#8217;t want a headache when I go to upgrade to the next version of wordpress.</p>
<p>This blog is all about keeping it simple and saving time.</p>
<p>So there you have it, the stock theme,  plaintxtBlog, by Scott Allan Wallick. Thanks Scott!</p>
]]></content:encoded>
			<wfw:commentRss>http://goodluxmedia.com/2008/03/07/what-is-this-all-about/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

