<?xml version="1.0" encoding="utf-8"?>
			
			<rss version="2.0" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:cc="http://web.resource.org/cc/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd">

			<channel>
			<title>Longview, Texas Web Design, ColdFusion, PHP and SEO Blog - ColdFusion</title>
			<link>http://blog.Design903.com/index.cfm</link>
			<description>Web Design Web Site Design Website Design Longview Texas TX web development, Hosting, ColdFusion, PHP, ASP, SQL Server, database development, search engine optimization</description>
			<language>en-us</language>
			<pubDate>Fri, 10 Sep 2010 19:32:18 -0500</pubDate>
			<lastBuildDate>Fri, 05 Mar 2010 01:36:00 -0500</lastBuildDate>
			<generator>BlogCFC</generator>
			<docs>http://blogs.law.harvard.edu/tech/rss</docs>
			<managingEditor>jeff@design903.com</managingEditor>
			<webMaster>jeff@design903.com</webMaster>
			<itunes:subtitle></itunes:subtitle>
			<itunes:summary></itunes:summary>
			<itunes:category text="Technology" />
			<itunes:category text="Technology">
				<itunes:category text="Podcasting" />
			</itunes:category>
			<itunes:category text="Technology">
				<itunes:category text="Tech News" />
			</itunes:category>
			<itunes:keywords></itunes:keywords>
			<itunes:author></itunes:author>
			<itunes:owner>
				<itunes:email>jeff@design903.com</itunes:email>
				<itunes:name></itunes:name>
			</itunes:owner>
			<itunes:image href="" />
			<image>
				<url></url>
				<title>Longview, Texas Web Design, ColdFusion, PHP and SEO Blog</title>
				<link>http://blog.Design903.com/index.cfm</link>
			</image>
			<itunes:explicit>no</itunes:explicit>
			
			
			
			
			
			<item>
				<title>Favorite E-Commerce Package</title>
				<link>http://blog.Design903.com/index.cfm/2010/3/5/Favorite-ECommerce-Package</link>
				<description>
				
				What is your favorite e-commerce software package and why?

I have several different packages I use depending on the requirements of the project.
				
				</description>
						
				
				<category>Longview, Texas</category>				
				
				<category>Web Design</category>				
				
				<category>PHP</category>				
				
				<category>Search Engine Optimization</category>				
				
				<category>ColdFusion</category>				
				
				<category>General News</category>				
				
				<pubDate>Fri, 05 Mar 2010 01:36:00 -0500</pubDate>
				<guid>http://blog.Design903.com/index.cfm/2010/3/5/Favorite-ECommerce-Package</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>FCKEditor Controls Missing in ColdFusion</title>
				<link>http://blog.Design903.com/index.cfm/2010/2/25/FCKEditor-Controls-Missing-in-ColdFusion</link>
				<description>
				
				I have used FCKEditor for WYSIWYG for many of the custom ColdFusion applications I have built.  Recently the FCKEditor stopped rendering and the code was just rendering a normal textarea.
				 [More]
				</description>
						
				
				<category>ColdFusion</category>				
				
				<pubDate>Thu, 25 Feb 2010 11:47:00 -0500</pubDate>
				<guid>http://blog.Design903.com/index.cfm/2010/2/25/FCKEditor-Controls-Missing-in-ColdFusion</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>Deleting all files in a directory with ColdFusion</title>
				<link>http://blog.Design903.com/index.cfm/2010/2/12/Deleting-all-files-in-a-directory-with-ColdFusion</link>
				<description>
				
				This not something I have to do very often so I tend to forget how to do it although it is very easy.  I have a folder that is holding temp files that get written by a data export.  I need to go through and clean out these files on a daily basis.
&lt;br /&gt;
&lt;br/&gt;
I needed code to read a directory, loop through all files and delete them.
This is a simple task with CFDirectory and CFFile.
				 [More]
				</description>
						
				
				<category>ColdFusion</category>				
				
				<pubDate>Fri, 12 Feb 2010 17:37:00 -0500</pubDate>
				<guid>http://blog.Design903.com/index.cfm/2010/2/12/Deleting-all-files-in-a-directory-with-ColdFusion</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>Coldfusion 9 - cfspreadsheet tag</title>
				<link>http://blog.Design903.com/index.cfm/2010/2/12/Coldfusion-9--cfspreadsheet-tag</link>
				<description>
				
				In the past when I needed to create a data export and dump it to a csv/xls file, I would create a file then loop through the query and append each line of data. This was not a hard task and did not take too many lines of code.
&lt;br /&gt;&lt;br /&gt;
However, with ColdFusion 9 this task can be done with one line of code using the cfspreadsheet tag.
				 [More]
				</description>
						
				
				<category>ColdFusion</category>				
				
				<pubDate>Fri, 12 Feb 2010 17:32:00 -0500</pubDate>
				<guid>http://blog.Design903.com/index.cfm/2010/2/12/Coldfusion-9--cfspreadsheet-tag</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>Select a Tab in CF8 +</title>
				<link>http://blog.Design903.com/index.cfm/2010/2/10/Select-a-Tab-in-CF8-</link>
				<description>
				
				Today I needed to select a tab that was created using the built-in ColdFusion tabs with cflayout.  I had never had this request before but found a quick and easy solution.  The ColdFusion.Layout.selectTab function made short work of it. &lt;br /&gt;

&lt;code&gt;&lt;a href=&quot;javaScript:ColdFusion.Layout.selectTab(&apos;tablayoutname&apos;,&apos;tabname&apos;)&quot;&gt;Click Here&lt;/a&gt;&lt;/code&gt;
Replace tablayoutname name with the name of your cflayout and replace tabname with the name for your cflayoutarea.&lt;br /&gt;&lt;br /&gt;

When the link is clicked, it selects the tab and displays it&apos;s contents.&lt;br /&gt;&lt;br /&gt;

It is a very simple but useful function.
				
				</description>
						
				
				<category>ColdFusion</category>				
				
				<pubDate>Wed, 10 Feb 2010 15:14:00 -0500</pubDate>
				<guid>http://blog.Design903.com/index.cfm/2010/2/10/Select-a-Tab-in-CF8-</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>Mura Timeout Issue Fixed</title>
				<link>http://blog.Design903.com/index.cfm/2010/1/28/Mura-Timeout-Issues</link>
				<description>
				
				In the past when I installed a new Mura CMS site, I would get a timeout error trying to load the admin.  I recently upgraded my server to CF 9 and a newer version of the JVM.  Since upgrading the CF and JVM, I am no longer having the timeout issue.

Old Setup:&lt;br /&gt;
CF: 8,0,1,195765&lt;br /&gt;
JVM: 1.6.0_04 &lt;br /&gt;

New Setup:&lt;br /&gt;
CF: 9,0,0,251028&lt;br /&gt;
JVM: 1.6.0_14 &lt;br /&gt;

Server is Windows 2003.

See this thread for more info on the issues:&lt;br /&gt;
&lt;a href=&quot;http://www.getmura.com/forum/messages.cfm?threadid=E29AFC2E-1307-4CE1-8AD3F64777FD8F79&quot; target=&quot;_blank&quot;&gt;http://www.getmura.com/forum/messages.cfm?threadid=E29AFC2E-1307-4CE1-8AD3F64777FD8F79&lt;/a&gt;
				
				</description>
						
				
				<category>Mura CMS</category>				
				
				<category>ColdFusion</category>				
				
				<pubDate>Thu, 28 Jan 2010 13:15:00 -0500</pubDate>
				<guid>http://blog.Design903.com/index.cfm/2010/1/28/Mura-Timeout-Issues</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>Adding reCaptcha to ColdFusion Site</title>
				<link>http://blog.Design903.com/index.cfm/2010/1/7/Adding-reCaptcha-to-ColdFusion-Site</link>
				<description>
				
				Thanks to Rocketbooks for the great tag for integrating reCaptcha into a ColdFusion site.&lt;br /&gt;  The tag makes it very easy to integrate with just a few lines of code.
&lt;br /&gt;&lt;br /&gt;
More info on the project:&lt;br /&gt;
&lt;a href=&quot;http://recaptcha.riaforge.org/&quot;&gt;http://recaptcha.riaforge.org/&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;

More info on the other RocketBooks projects:&lt;br /&gt;
http://www.rocketboots.com.au/site/index.cfm/page/osprojects&lt;br /&gt;&lt;br /&gt;

Sample integration Code:&lt;br /&gt;
&lt;code&gt;
 &lt;cf_recaptcha  
         privateKey=&quot;...your private key...&quot;  
         publicKey=&quot;...your public key...&quot;&gt;
&lt;/code&gt;
				
				</description>
						
				
				<category>ColdFusion</category>				
				
				<pubDate>Thu, 07 Jan 2010 16:31:00 -0500</pubDate>
				<guid>http://blog.Design903.com/index.cfm/2010/1/7/Adding-reCaptcha-to-ColdFusion-Site</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>ColdFusion 9 Migration Issues</title>
				<link>http://blog.Design903.com/index.cfm/2009/12/30/ColdFusion-9-Migration-Issues</link>
				<description>
				
				Here is more details on the issues encountered when migrating from ColdFusion 8 to ColdFusion 9 on a Windows2003 VPS server:
&lt;br /&gt;
&quot;The 1st attempt the install failed completely at the end and broke both CF9 and CF8. I uninstalled CF9 and rebooted, CF8 was working again.
&lt;br /&gt;&lt;br /&gt;
2nd attempt the install completed, but the settings migration failed. I had to follow this Adobe KB:
&lt;br /&gt;
http://kb2.adobe.com/cps/527/cpsid_52797.html
&lt;br /&gt;&lt;br /&gt;
After that, the migration completed fine.&quot;
&lt;br /&gt;&lt;br /&gt;
My hosting company did a great job working out these issues.
				
				</description>
						
				
				<category>ColdFusion</category>				
				
				<category>General News</category>				
				
				<pubDate>Wed, 30 Dec 2009 11:24:00 -0500</pubDate>
				<guid>http://blog.Design903.com/index.cfm/2009/12/30/ColdFusion-9-Migration-Issues</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>Now Powered by ColdFusion 9</title>
				<link>http://blog.Design903.com/index.cfm/2009/12/30/Now-Powered-by-ColdFusion-9</link>
				<description>
				
				My ColdFusion VPS that runs www.Design903.com and multiple other sites is now upgraded to ColdFusion 9.
&lt;br /&gt;&lt;br /&gt;
My hosting company took care of the upgrade so I did not deal with any of the technical issues of the upgrade.  They did say they ran into a few small issues but got everything resolved.
&lt;br /&gt;&lt;br /&gt;
The only issue I had was with a site using the ColdBox framework with Transfer 1.1.  That version of Transfer is not compatible with ColdFusion 9.  I just downloaded the bleeding edge version from their Subversion and replaced the Transfer folder and was back in business.
&lt;br /&gt;&lt;br /&gt;
Other than the small issue with Transfer everything went smoothly on my end. I will report more when I hear what issues the hosting company ran into on the upgrade.
&lt;br /&gt;&lt;br /&gt;
Everything seems to be running well right now and I am anxious to see if that continues.
				
				</description>
						
				
				<category>ColdFusion</category>				
				
				<category>General News</category>				
				
				<pubDate>Wed, 30 Dec 2009 11:11:00 -0500</pubDate>
				<guid>http://blog.Design903.com/index.cfm/2009/12/30/Now-Powered-by-ColdFusion-9</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>ColdFusion serializeJson issues</title>
				<link>http://blog.Design903.com/index.cfm/2009/12/21/ColdFusion-serializeJson-issues</link>
				<description>
				
				Today I was using serializeJson to pass a query object back to a form via jQuery.&lt;br /&gt;
I ran into two different issues:&lt;br /&gt;
1.  serializeJson automatically converted a value of &quot;yes&quot; to &quot;true&quot; and &quot;no&quot; to &quot;false&quot;.  This was causing issues as I need the &quot;yes&quot; or &quot;no&quot; not &quot;true&quot; or &quot;false&quot;.&lt;br /&gt;
2.  serializeJson automatically stripped out a leading zero from a string.  Ex:  &quot;02&quot; became &quot;2&quot;.&lt;br /&gt;&lt;br /&gt;

The only solution I could find was to add a leading space in these strings. 
Ex:  For Number 1, I changed the string to: &quot; yes&quot; and for number 2 I changed the string to &quot; 02&quot;.&lt;br /&gt;
I didn&apos;t really like this solution because I then had to strip out the spaces on the front end.&lt;br /&gt;
However, jQuery made this simple with the jQuery.trim function.
Ex:  
&lt;code&gt;
$(&apos;#user_custom_1&apos;).val(jQuery.trim(user_custom_1));
&lt;/code&gt;
&lt;br /&gt;
Anybody know of any other solution?
				
				</description>
						
				
				<category>ColdFusion</category>				
				
				<pubDate>Mon, 21 Dec 2009 14:17:00 -0500</pubDate>
				<guid>http://blog.Design903.com/index.cfm/2009/12/21/ColdFusion-serializeJson-issues</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>Top 10 most frequently used ColdFusion Tags</title>
				<link>http://blog.Design903.com/index.cfm/2009/11/14/Top-10-most-frequetly-used-ColdFusion-Tags</link>
				<description>
				
				Here are the 10 top ColdFusion tags that I frequently use the most, in no particular order:&lt;br /&gt;&lt;br /&gt;
cfquery&lt;br /&gt;
cfif&lt;br /&gt;
cfset&lt;br /&gt;
cftry&lt;br /&gt;
cfcatch&lt;br /&gt;
cfparam&lt;br /&gt;
cfqueryparam&lt;br /&gt;
cfloop&lt;br /&gt;
cfoutput&lt;br /&gt;
cfcase&lt;br /&gt;&lt;br /&gt;
This is just off of the top of my head as I don&apos;t really think about it on a day to day basis.&lt;br /&gt;&lt;br /&gt;
What are your top 10 most frequently used ColdFusion tags?
				
				</description>
						
				
				<category>ColdFusion</category>				
				
				<pubDate>Sat, 14 Nov 2009 19:34:00 -0500</pubDate>
				<guid>http://blog.Design903.com/index.cfm/2009/11/14/Top-10-most-frequetly-used-ColdFusion-Tags</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>Design903.com Now Powered by Mura</title>
				<link>http://blog.Design903.com/index.cfm/2009/10/28/Design903com-Now-Powered-by-Mura</link>
				<description>
				
				Design903.com is now powered by &lt;a href=&quot;http://www.getmura.com&quot;&gt;Mura CMS&lt;/a&gt;.  The guys at Blue River Interactive Group have done a great job with Mura.  I am biased to any solution that is written in ColdFusion but I must say this is a great product regardless. 
I am still working out a few kinks but overall the process went very smooth.

What is your experience with Mura?  What do you like and not like?
				
				</description>
						
				
				<category>Longview, Texas</category>				
				
				<category>Web Design</category>				
				
				<category>ColdFusion</category>				
				
				<category>General News</category>				
				
				<pubDate>Wed, 28 Oct 2009 11:16:00 -0500</pubDate>
				<guid>http://blog.Design903.com/index.cfm/2009/10/28/Design903com-Now-Powered-by-Mura</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>Longview Daily Deals Coming Soon</title>
				<link>http://blog.Design903.com/index.cfm/2009/9/26/Longview-Daily-Deals-Coming-Soon</link>
				<description>
				
				Be sure to check out:
&lt;a href=&quot;http://www.whatsthedealpickle.com/&quot; target=&quot;_blank&quot;&gt;www.whatsthedealpickle.com&lt;/a&gt; - your local source for daily deals in Longview, Texas.  Design903 designed and developed the website for &lt;a href=&quot;http://www.whatsthedealpickle.com/&quot; target=&quot;_blank&quot;&gt;www.whatsthedealpickle.com&lt;/a&gt;.  The system was developed with ColdFusion and mySQL.

The site will be launching soon, but you can sign up for the newsletter so you can receive the daily deals via email.

&lt;a href=&quot;http://www.design903.com&quot; target=&quot;_blank&quot; title=&quot;East Texas Web Design&quot;&gt;Design903, an East Texas Web Design company&lt;/a&gt; serving: Longview, Tyler, Kilgore, Marshall, Texarkana and the rest of East Texas.
&lt;a href=&quot;http://www.design903.com/front.cfm/id/96A6BE6F-CB1B-3E44-7AD6118ECAF3FE06/pagename/Contact-Us&quot; target=&quot;_blank&quot;&gt;Contact us&lt;/a&gt; today to discuss your project and get a free quote.
				
				</description>
						
				
				<category>Longview, Texas</category>				
				
				<category>Web Design</category>				
				
				<category>ColdFusion</category>				
				
				<pubDate>Sat, 26 Sep 2009 01:54:00 -0500</pubDate>
				<guid>http://blog.Design903.com/index.cfm/2009/9/26/Longview-Daily-Deals-Coming-Soon</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>DataMgr</title>
				<link>http://blog.Design903.com/index.cfm/2009/8/13/DataMgr</link>
				<description>
				
				I have been using &lt;a href=&quot;http://www.bryantwebconsulting.com/cfcs/&quot; target=&quot;_blank&quot;&gt;DataMgr &lt;/a&gt;for a while now and I must say that it saves me tons of time when building new ColdFusion applications.

I use it for all of my CRUD functions and my select functions which make up 90% of my apps.  I use it and one other &quot;generic select&quot; cfc and I can pretty much build a basic app with no other CFCs.

It really has saved me countless hours of programming and I thank Steve Bryant for the time he has put into it.  DataMgr combined with SebTools(also by Bryant) covers pretty much all of my basic functions that I need to build a CF site.

Have you used DataMgr?
What do you like and dislike about it?
				
				</description>
						
				
				<category>ColdFusion</category>				
				
				<pubDate>Thu, 13 Aug 2009 02:45:00 -0500</pubDate>
				<guid>http://blog.Design903.com/index.cfm/2009/8/13/DataMgr</guid>
				
			</item>
			
		 	
			
			
			<item>
				<title>Follow up on Mura</title>
				<link>http://blog.Design903.com/index.cfm/2009/8/9/Follow-up-on-Mura</link>
				<description>
				
				I must say that Mura is one of the best CMS&apos;s that I have worked with. Whether or not it is written in ColdFusion does not matter, although it is a huge bonus. Every time I think I come up with something that I think is not built in, I just do a search in the Mura forums and quickly find out it is built in. I have yet to write any custom code for a site running on Mura CMS - so far all of the functionality I have needed has been built in.
				
				</description>
						
				
				<category>Longview, Texas</category>				
				
				<category>ColdFusion</category>				
				
				<pubDate>Sun, 09 Aug 2009 08:56:00 -0500</pubDate>
				<guid>http://blog.Design903.com/index.cfm/2009/8/9/Follow-up-on-Mura</guid>
				
			</item>
			
		 	
			</channel></rss>