<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:atom="http://www.w3.org/2005/Atom" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">
	<channel>
	<title>Digital Rewind</title>
	<link>http://www.digitalrewind.com/</link>
	<description>Somewhat interesting information on Coldfusion and Internet programming.</description>
	<generator>Mango 1.5</generator>
	
	 
      <atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/DigitalRewind" /><feedburner:info uri="digitalrewind" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
         <title>Connecting to EC2 with Transmit</title>
         <description>&lt;p&gt;This example is for Amazon Linux EC2 so your milage will vary.  Click the [+] to add a site to transmit:&lt;/p&gt;
&lt;p&gt;&lt;img src="/assets/content/posts/ec2/transmit-add.jpg" alt="" width="500" height="347" /&gt;&lt;/p&gt;
&lt;p&gt;You need to select sFTP as your protocal, enter either your instance name given to you by AWS or the domain you use to access it.  The user will be ec2-user with no password.  You should have saved your PEM key file to your local system to you can SSH and manage your instance.  I put it in ~/Documents/ec2-keys/[yourkey].pem. Then go to the command line and change directory to the ~/Documents/ec2-keys/ folder in this case and run :&lt;/p&gt;
&lt;p&gt;&lt;code&gt;chmod 700 [yourkey].pem&lt;br /&gt;ssh-add [yourkey].pem&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;Also a special note you have to do the ssh-add command again if you reboot or logoff.&lt;/p&gt;</description>
         <link>http://feedproxy.google.com/~r/DigitalRewind/~3/FxYNWO-gy14/connecting-to-ec2-transmit</link>
         <guid isPermaLink="false">http://www.digitalrewind.com/post.cfm/connecting-to-ec2-transmit</guid>
         <category>Amazon AWS</category><category>Stuff</category>
         <pubDate>Thu, 29 Dec 2011 18:54:00 GMT</pubDate>
      <feedburner:origLink>http://www.digitalrewind.com/post.cfm/connecting-to-ec2-transmit</feedburner:origLink></item> 
      <item>
         <title>Sam Moore's New Website</title>
         <description>&lt;p&gt;We just finished the updated layout programming for Sam Moore. They wanted the site to look more like the existing &lt;a href="http://www.hookerfurniture.com" target="_self"&gt;www.hookerfurniture.com&lt;/a&gt; parent site while adding updated meta data, social networking, fabrics, and product information.  The &lt;a href="http://web.archive.org/web/20110715234606/http://www.sammoore.com/" target="_blank"&gt;site was originally in ASP/HTML&lt;/a&gt; and didn't match their new marketing.  It's been completely redone with &lt;a href="http://www.adobe.com/products/coldfusion-family.html" target="_blank"&gt;Coldfusion&lt;/a&gt;, &lt;a href="http://www.mysql.com/" target="_blank"&gt;mySQL&lt;/a&gt;, &lt;a href="http://jquery.com/" target="_blank"&gt;jQuery&lt;/a&gt;, and &lt;a href="http://developer.yahoo.com/yui/grids/" target="_blank"&gt;YUI grids&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.sammoore.com" target="_blank"&gt;&lt;img style="border: 0;" src="/assets/content/posts/sm/sam-moore.png" alt="New Sam Moore Layout" width="515" height="340" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://web.archive.org/web/20110715234606/http://www.sammoore.com/" target="_blank"&gt;View the Previous Site for Comparison&lt;/a&gt;&lt;/p&gt;</description>
         <link>http://feedproxy.google.com/~r/DigitalRewind/~3/jp8pE6ehFCQ/sam-moores-new-website</link>
         <guid isPermaLink="false">http://www.digitalrewind.com/post.cfm/sam-moores-new-website</guid>
         <category>Amazon AWS</category><category>Coldfusion</category><category>jQuery</category><category>mySQL</category>
         <pubDate>Mon, 26 Sep 2011 18:47:30 GMT</pubDate>
      <feedburner:origLink>http://www.digitalrewind.com/post.cfm/sam-moores-new-website</feedburner:origLink></item> 
      <item>
         <title>Coldfusion MYSQL JDBC Data Truncated for Column on Import</title>
         <description>&lt;p&gt;This post is more for my notes so I remember it, but once again &lt;a href="http://www.bennadel.com"&gt;Ben Nadel's blog&lt;/a&gt; saved the day.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.bennadel.com/blog/1209-Turning-On-Multiple-Statements-In-ColdFusion-8-MySQL-4-5-Datasource.htm"&gt;MYSQL MultiQueries 1&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.bennadel.com/blog/1542-MySQL-3-4-com-mysql-jdbc-Driver-And-allowMultiQueries-true.htm"&gt;MYSQL MultiQueries 2&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;My problem was similar, but I was getting "Data Truncated for Column" errors using MYSQL import.  To stop this error, basically just let mysql truncate teh fields without throwing the error.  Follow Ben's instructions for whichever version of the driver you are using.  Except you want to add &lt;strong&gt;&lt;em&gt;jdbcCompliantTruncation=false &lt;/em&gt;&lt;/strong&gt;to the driver.  If you have multiple parameters then you separate them with an &lt;em&gt;&lt;strong&gt;&amp;amp;&lt;/strong&gt;&lt;/em&gt;.&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;</description>
         <link>http://feedproxy.google.com/~r/DigitalRewind/~3/VNhyLOZGR9I/coldfusion-mysql-jdbc-data-truncated-for-column-on-import</link>
         <guid isPermaLink="false">http://www.digitalrewind.com/post.cfm/coldfusion-mysql-jdbc-data-truncated-for-column-on-import</guid>
         <category>Coldfusion</category><category>mySQL</category>
         <pubDate>Mon, 11 Jul 2011 18:00:14 GMT</pubDate>
      <feedburner:origLink>http://www.digitalrewind.com/post.cfm/coldfusion-mysql-jdbc-data-truncated-for-column-on-import</feedburner:origLink></item> 
      <item>
         <title>Bassett Mirror Company's New Website</title>
         <description>&lt;p&gt;My friend's over at &lt;a href="http://www.chatmoss.com/" target="_blank"&gt;Chatmoss Web Systems&lt;/a&gt; launched the updated version of &lt;a href="http://www.bassettmirror.com/"&gt;Bassett Mirror Company's&lt;/a&gt; website this week.&lt;/p&gt;
&lt;p&gt;&lt;img src="/assets/content/posts/bmc/bmc-page.jpg" alt="BMC Website" width="477" height="388" /&gt;&lt;/p&gt;
&lt;p&gt;I think they did a wonderfull job, but you may be asking why am I posting about it?  I helped out with the images :) The site is being powered by our image library and web services from &lt;a href="http://www.furnishweb.com" target="_blank"&gt;FurnishWEB&lt;/a&gt; written in Coldfusion and hosted on Amazon's S3.&lt;/p&gt;</description>
         <link>http://feedproxy.google.com/~r/DigitalRewind/~3/CYS0DluGZRk/bassett-mirror-companys-new-website</link>
         <guid isPermaLink="false">http://www.digitalrewind.com/post.cfm/bassett-mirror-companys-new-website</guid>
         <category>Amazon AWS</category><category>Coldfusion</category>
         <pubDate>Fri, 20 May 2011 23:36:41 GMT</pubDate>
      <feedburner:origLink>http://www.digitalrewind.com/post.cfm/bassett-mirror-companys-new-website</feedburner:origLink></item> 
      <item>
         <title>Installing Railo on EC2 with Amazon Linux</title>
         <description>&lt;p&gt;After following the &lt;a href="http://www.bennadel.com/blog/1224-HostMySite-com-Has-The-Best-ColdFusion-Hosting.htm"&gt;Comments on Ben's blog about EC2 and Railo&lt;/a&gt; I dedcided to type up my notes in case they might help anyone.  This assumes you know how to setup an account and the firewall.  There is a GUI on the amazon site to do all this and setup your security files to SSH.  If not google and you can find videos.&lt;/p&gt;
&lt;p&gt;1. Setup an EC2 account and launch an Amazon Linux AMI instance with the security settings to have ports :20, 21, 22, 80, 3306,8888 open.&lt;/p&gt;
&lt;p&gt;2. Once it's launched ssh to your new instance as ec2-user&lt;/p&gt;
&lt;p&gt;3. sudo su - ( logs you in as root )&lt;/p&gt;
&lt;h2&gt;Update AMAZON LINUX&lt;/h2&gt;
&lt;p&gt;&lt;code&gt;yum update&lt;/code&gt;&lt;/p&gt;
&lt;h2&gt;Install MYSQL&lt;/h2&gt;
&lt;p&gt;&lt;code&gt;yum install mysql mysql-server&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;This installs mysql just follow the prompts.&lt;/p&gt;
&lt;p&gt;&lt;code&gt;chkconfig mysqld on&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;This sets mysql to run on the start of the instance.  ( edit the server settings in /etc/my.cnf with nano )&lt;/p&gt;
&lt;p&gt;&lt;code&gt;service mysqld start&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;This starts MYSQL on your instance for the first time.&lt;/p&gt;
&lt;p&gt;
&lt;code&gt;cd /usr/bin/&lt;br /&gt;./mysql_secure_installation&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;This file lets you setup the mysql root password and disable other stuff.  The default mysql root password is "blank" so you must run this script.&lt;/p&gt;
&lt;p&gt;
&lt;code&gt;CREATE USER ’remote_user’@’localhost’ IDENTIFIED BY ’password’;&lt;br /&gt;GRANT ALL PRIVILEGES ON . TO ’remote_user’@’localhost’;&lt;br /&gt;CREATE USER ’remote_user’@’%’ IDENTIFIED BY ’password’;&lt;br /&gt;GRANT ALL PRIVILEGES ON . TO ’remote_user’@’%’;&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;% lets your user login from anywhere usually this is a bad idea.  Set it to your IP address will be connecting remotely from.  Localhost setups up the user so your Railo DSN's can talk to mysql.  Change 'password' to a secure password you want to use.&lt;/p&gt;
&lt;h2&gt;Apache&lt;/h2&gt;
&lt;p&gt;
&lt;code&gt;yum install httpd httpd-devel&lt;br /&gt;chkconfig httpd on &lt;br /&gt;service httpd start&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;This is similar to how we did mysql.  If you navigate to your instance http://[yourinstancename].compute-1.amazonaws.com/ you should get the apache start screen.&lt;/p&gt;
&lt;h2&gt;RAILo&lt;/h2&gt;
&lt;p&gt;
&lt;code&gt;cd /tmp&lt;br /&gt;wget http://railo.viviotech.net/downloader.cfm/id/15/file/railo-3.2.1.000-pl0-linux-x64-installer.run&lt;br /&gt;chmod 777 railo-3.2.1.000-pl0-linux-x64-installer.run&lt;br /&gt;./railo-3.2.1.000-pl0-linux-x64-installer.run&lt;/code&gt;&lt;/p&gt;
&lt;p&gt; This runs the installer you'll need the folders below.  On the 64bit version the defaults work.  Apache is 2.2 for the connector. &lt;/p&gt;
&lt;p&gt;
&lt;code&gt;/etc/rc.d/init.d/httpd&lt;br /&gt;/usr/lib64/httpd/modules&lt;br /&gt;/etc/httpd/conf.d&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;
&lt;code&gt;http://[yourinstancename].compute-1.amazonaws.com:8888&lt;br /&gt;http://[yourinstancename].compute-1.amazonaws.com:8888/railo-context/admin/web.cfm&lt;br /&gt;http://[yourinstancename].compute-1.amazonaws.com:8888/railo-context/admin/server.cfm&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;Railo will now be running you can get to it by your EC2 name and port 8888 check the server and web admin to make sure the passwords are setup.&lt;/p&gt;
&lt;h2&gt;Configuring a new site on APACHE and RAILO&lt;/h2&gt;
&lt;p&gt;The sites need to be setup in railo and apache we'll setup a test site so you can see what to do.&lt;/p&gt;
&lt;p&gt;On you laptop edit your hosts file and add an entry for :&lt;/p&gt;
&lt;p&gt;
&lt;code&gt;999.999.999.999  mytestdomain.com&lt;br /&gt;999.999.999.999  www.mytestdomain.com&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;Substitue your EC2 ip for 999.999.999.999&lt;/p&gt;
&lt;p&gt;on your EC2 instance :&lt;/p&gt;
&lt;p&gt;
&lt;code&gt;cd /var/www/&lt;br /&gt; mkdir mytestdomain.com&lt;br /&gt; cd mytestdomain.com&lt;br /&gt; mkdir html&lt;br /&gt; cd html&lt;br /&gt; nano index.cfm&lt;br /&gt; cd ..&lt;br /&gt; cd ..&lt;br /&gt; chmod -R 777 mytestdomain.com&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;Setup the folder for Apache and Railo. And add a default index.cfm page with hello world in it.  This is where your code will go.&lt;/p&gt;
&lt;p&gt;
&lt;code&gt;nano /opt/railo/tomcat/conf/server.xml&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;At the end of the file near the example add:&lt;/p&gt;
&lt;p&gt;
&lt;code&gt;www.mytestdomain.com&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;This will add the webroot to railo&lt;/p&gt;
&lt;p&gt;
&lt;code&gt;/opt/railo/railo_ctl restart&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;This will reboot railo to see the new web folder.&lt;/p&gt;
&lt;p&gt;
&lt;code&gt;nano /etc/httpd/conf/httpd.conf&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;ctr-w : index.html  and add index.cfm to the end of the DirectoryIndex index.html index.html.var index.cfm line.
&lt;/p&gt;
&lt;p&gt;
&lt;code&gt;service restart httpd&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;Restart Apache&lt;/p&gt;
&lt;p&gt;Navigate to www.mytestdomain.com and you should be running Railo&lt;/p&gt;
&lt;p&gt;
This is just a summary of my notes to get everything running.  Obviously your milage will vary and you need to know about running Apache,MYSQL, and railo :).  Good Luck.
&lt;/p&gt;
&lt;h2&gt;Notes and stuff&lt;/h2&gt;
&lt;p&gt;nano /opt/railo/tomcat/bin/setenv.sh  [to setup memory settings for railo]&lt;/p&gt;
&lt;p&gt;/opt/railo/railo_ctl restart [restart railo]&lt;/p&gt;</description>
         <link>http://feedproxy.google.com/~r/DigitalRewind/~3/ZNKTD8qBanw/installing-railo-on-ec2-with-amazon-linux</link>
         <guid isPermaLink="false">http://www.digitalrewind.com/post.cfm/installing-railo-on-ec2-with-amazon-linux</guid>
         <category>Amazon AWS</category><category>Railo</category>
         <pubDate>Mon, 25 Apr 2011 23:24:25 GMT</pubDate>
      <feedburner:origLink>http://www.digitalrewind.com/post.cfm/installing-railo-on-ec2-with-amazon-linux</feedburner:origLink></item> 
      <item>
         <title>Railo SES URL subfolders with Tomcat</title>
         <description>&lt;p&gt;This is a continuation of my &lt;a href="/post.cfm/railo-ses-url-subfolders-with-jetty"&gt;last post&lt;/a&gt;. In my effort to not have a million domain names and hosts file edits; I setup my TOMCAT server on ec2 the same way as the jetty server on my laptop :).  This is to get SES urls to work  on TOMCAT in a subfolder.&lt;/p&gt;
&lt;p&gt;To get &lt;span style="font-family: Verdana, Tahoma, arial, sans-serif; font-size: 11px; color: #666666; line-height: 16px;"&gt;http://my.ec2-server.com/site1/index.cfm/fuseaction/my.page/test/1  to function properly we do something similar to Jetty.  This time we edit the /opt/railo/tomcat/conf/web.xml  file.  Search for /index.cfm/*&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="font-family: Verdana, Tahoma, arial, sans-serif; font-size: 11px; color: #666666; line-height: 16px;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;
&lt;code&gt;&lt;span class='cc_normaltag'&gt;&lt;span class='cc_formtag'&gt;&amp;lt;servlet-mapping&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;    &lt;span class='cc_normaltag'&gt;&lt;span class='cc_formtag'&gt;&amp;lt;servlet-name&amp;gt;&lt;/span&gt;&lt;/span&gt;CFMLServlet&lt;span class='cc_normaltag'&gt;&lt;span class='cc_formtag'&gt;&amp;lt;/servlet-name&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;    &lt;span class='cc_normaltag'&gt;&amp;lt;url-pattern&amp;gt;&lt;/span&gt;/index.cfm/*&lt;span class='cc_normaltag'&gt;&amp;lt;/url-pattern&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span class='cc_normaltag'&gt;&lt;span class='cc_formtag'&gt;&amp;lt;/servlet-mapping&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;&lt;span class='cc_normaltag'&gt;&lt;span class='cc_formtag'&gt;&amp;lt;servlet-mapping&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;    &lt;span class='cc_normaltag'&gt;&lt;span class='cc_formtag'&gt;&amp;lt;servlet-name&amp;gt;&lt;/span&gt;&lt;/span&gt;CFMLServlet&lt;span class='cc_normaltag'&gt;&lt;span class='cc_formtag'&gt;&amp;lt;/servlet-name&amp;gt;&lt;/span&gt;&lt;/span&gt;  &lt;br /&gt;    &lt;span class='cc_normaltag'&gt;&amp;lt;url-pattern&amp;gt;&lt;/span&gt;/site1/index.cfm/*&lt;span class='cc_normaltag'&gt;&amp;lt;/url-pattern&amp;gt;&lt;/span&gt;  &lt;br /&gt;&lt;span class='cc_normaltag'&gt;&lt;span class='cc_formtag'&gt;&amp;lt;/servlet-mapping&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;
Run
&lt;code&gt;/opt/railo/railo_ctl restart&lt;/code&gt;

And you are all set.</description>
         <link>http://feedproxy.google.com/~r/DigitalRewind/~3/3FmjgQrq7wo/railo-ses-url-subfolders-with-tomcat</link>
         <guid isPermaLink="false">http://www.digitalrewind.com/post.cfm/railo-ses-url-subfolders-with-tomcat</guid>
         <category>Amazon AWS</category><category>Coldfusion</category><category>Railo</category>
         <pubDate>Tue, 19 Apr 2011 03:49:10 GMT</pubDate>
      <feedburner:origLink>http://www.digitalrewind.com/post.cfm/railo-ses-url-subfolders-with-tomcat</feedburner:origLink></item> 
      <item>
         <title>Railo SES URL subfolders with Jetty</title>
         <description>&lt;p&gt;I've been working my way through learning the ins and outs of Railo over the last few months.  So far I'm impressed, but still trying to figure out all the quirks.&lt;/p&gt;
&lt;p&gt;Our sites use Fusebox and SES url's and for some reason they would work on my EC2 instance and not on my laptop.  If I searched for a solution most of the posts were old and pointed to  .cfm/* and .cfc/* needing to be added to the /railo/etc/defaultweb.xml.  It seems in the latest download these are already added.  So that didn't help me.  I finally figured it out though.  When I develop on my laptop I have all my webs in subfolders under the main web root : http://localhost:8888/cfbuilder/site1/index.cfm/fuseaction/my.page/test/1  for example.  The mappings only seem to work if the site is in the root.  So to get this to work you have to add : &lt;/p&gt;
&lt;p&gt;
&lt;code&gt;&lt;span class='cc_normaltag'&gt;&lt;span class='cc_formtag'&gt;&amp;lt;servlet-mapping&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;    &lt;span class='cc_normaltag'&gt;&lt;span class='cc_formtag'&gt;&amp;lt;servlet-name&amp;gt;&lt;/span&gt;&lt;/span&gt;CFMLServlet&lt;span class='cc_normaltag'&gt;&lt;span class='cc_formtag'&gt;&amp;lt;/servlet-name&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;    &lt;span class='cc_normaltag'&gt;&amp;lt;url-pattern&amp;gt;&lt;/span&gt;*.cfm&lt;span class='cc_normaltag'&gt;&amp;lt;/url-pattern&amp;gt;&lt;/span&gt;&lt;br /&gt;    &lt;span class='cc_normaltag'&gt;&amp;lt;url-pattern&amp;gt;&lt;/span&gt;*.cfml&lt;span class='cc_normaltag'&gt;&amp;lt;/url-pattern&amp;gt;&lt;/span&gt;&lt;br /&gt;    &lt;span class='cc_normaltag'&gt;&amp;lt;url-pattern&amp;gt;&lt;/span&gt;*.cfc&lt;span class='cc_normaltag'&gt;&amp;lt;/url-pattern&amp;gt;&lt;/span&gt;&lt;br /&gt;    &lt;span class='cc_normaltag'&gt;&amp;lt;url-pattern&amp;gt;&lt;/span&gt;*.cfm/*&lt;span class='cc_normaltag'&gt;&amp;lt;/url-pattern&amp;gt;&lt;/span&gt;&lt;br /&gt;    &lt;span class='cc_normaltag'&gt;&amp;lt;url-pattern&amp;gt;&lt;/span&gt;*.cfml/*&lt;span class='cc_normaltag'&gt;&amp;lt;/url-pattern&amp;gt;&lt;/span&gt;&lt;br /&gt;    &lt;span class='cc_normaltag'&gt;&amp;lt;url-pattern&amp;gt;&lt;/span&gt;*.cfc/*&lt;span class='cc_normaltag'&gt;&amp;lt;/url-pattern&amp;gt;&lt;/span&gt;&lt;br /&gt;    &lt;span class='cc_normaltag'&gt;&amp;lt;url-pattern&amp;gt;&lt;/span&gt;/*.cfm/*&lt;span class='cc_normaltag'&gt;&amp;lt;/url-pattern&amp;gt;&lt;/span&gt;&lt;br /&gt;    &lt;span class='cc_normaltag'&gt;&amp;lt;url-pattern&amp;gt;&lt;/span&gt;/cfbuilder/site1/index.cfm/*&lt;span class='cc_normaltag'&gt;&amp;lt;/url-pattern&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span class='cc_normaltag'&gt;&lt;span class='cc_formtag'&gt;&amp;lt;/servlet-mapping&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;Kinda of a pain to add each site manually to the file, but it works.  So I can't complain too much.&lt;/p&gt;</description>
         <link>http://feedproxy.google.com/~r/DigitalRewind/~3/HdgEadBL6bw/railo-ses-url-subfolders-with-jetty</link>
         <guid isPermaLink="false">http://www.digitalrewind.com/post.cfm/railo-ses-url-subfolders-with-jetty</guid>
         <category>Coldfusion</category><category>Railo</category>
         <pubDate>Sat, 16 Apr 2011 15:57:08 GMT</pubDate>
      <feedburner:origLink>http://www.digitalrewind.com/post.cfm/railo-ses-url-subfolders-with-jetty</feedburner:origLink></item> 
      <item>
         <title>Vaughan-Bassett on ABC News made in America</title>
         <description>&lt;p&gt;One of our clients was on&lt;a href="http://abcnews.go.com/WN/MadeinAmerica"&gt; ABC news Made in America&lt;/a&gt; tonight.  A Dallas &lt;a href="http://abcnews.go.com/US/made-america-usry-familys-home-dallas-refitted-american/story?id=13041638"&gt;family replaced all their foreign made items&lt;/a&gt; with American made items which from the looks of the clips was harder than they thought.&lt;/p&gt;
&lt;p&gt;If you go to the listing of the items they bought for the house the bedroom furniture comes from &lt;a href="http://www.vaughan-bassett.com/"&gt;Vaughan-Bassett in Galax, Virginia&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;We built their site on Coldfusion, MYSQL, and Fusebox.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.vaughan-bassett.com/"&gt;&lt;img src="/assets/content/posts/vb/vb-screen-shot.jpg" alt="Vaughan-Bassett Furniture" width="513" height="397" /&gt;&lt;/a&gt;&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;
&lt;p&gt; &lt;/p&gt;</description>
         <link>http://feedproxy.google.com/~r/DigitalRewind/~3/Lfy2F1TddxY/vaughan-bassett-on-abc-news-made-in-america</link>
         <guid isPermaLink="false">http://www.digitalrewind.com/post.cfm/vaughan-bassett-on-abc-news-made-in-america</guid>
         <category>Coldfusion</category><category>Stuff</category>
         <pubDate>Thu, 03 Mar 2011 02:04:39 GMT</pubDate>
      <feedburner:origLink>http://www.digitalrewind.com/post.cfm/vaughan-bassett-on-abc-news-made-in-america</feedburner:origLink></item> 
      <item>
         <title>Yahoo SLURP!  why are you so greedy?</title>
         <description>&lt;p&gt;Yesterday our servers were being hammered from IP address : 67.195.37.172 which appears to be the Yahoo indexer.  Then today I read a tweet from &lt;a href="http://www.bennadel.com/"&gt;Ben Nadel&lt;/a&gt; he was having the same thing happen.  So I thought I would write a quick post in case some others were having the same issue.&lt;/p&gt;
&lt;p&gt;On the &lt;a href="http://help.yahoo.com/l/us/yahoo/search/webcrawler/slurp-03.html;_ylt=AoHIyzeVN2ct3voDKhD_yKuygiN4"&gt;Yahoo SLURP!&lt;/a&gt; page they suggest adding : &lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Crawl-delay:10&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt; to your robots.txt file.  Where the number is the seconds of delay before it hits you with another request.&lt;/p&gt;
&lt;p&gt;This seemed to stop the problem unless SLURP! just gave up :)&lt;/p&gt;
&lt;p&gt;In doing more research there appears to also be a &lt;/p&gt;
&lt;p&gt;&lt;span style="white-space: pre-wrap;"&gt;&lt;strong&gt;Visit-time: 1800-2330&lt;/strong&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span style="white-space: pre-wrap;"&gt;entry you can make but nothing supports it right now.  I added it just in case.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;</description>
         <link>http://feedproxy.google.com/~r/DigitalRewind/~3/TLEtcODHgzI/yahoo-slurp-overloading-server</link>
         <guid isPermaLink="false">http://www.digitalrewind.com/post.cfm/yahoo-slurp-overloading-server</guid>
         <category>Coldfusion</category><category>Stuff</category>
         <pubDate>Fri, 08 Oct 2010 21:25:09 GMT</pubDate>
      <feedburner:origLink>http://www.digitalrewind.com/post.cfm/yahoo-slurp-overloading-server</feedburner:origLink></item> 
      <item>
         <title>Amazon Linux AMI and Coldfusion 9</title>
         <description>&lt;p&gt;For fun this weekend I was playing with the &lt;a href="http://aws.amazon.com/amazon-linux-ami/"&gt;Amazon Linux&lt;/a&gt; on EC2  with Coldfusion 9.  Since Amazon Linux is based on &lt;a href="http://www.centos.org/"&gt;CENTOS&lt;/a&gt; I figured it shouldn't be too hard to get it to work so why not...  I'll make the disclaimer now that &lt;a href="http://www.centos.org/"&gt;CENTOS &lt;/a&gt;and &lt;a href="http://aws.amazon.com/amazon-linux-ami/"&gt;Amazon Linux&lt;/a&gt; are not offically supported, but we have been running Coldfusion 7/8 on &lt;a href="http://www.centos.org/"&gt;CENTOS&lt;/a&gt; for a couple years now and it seems to work great once you get the installer and apache connector to work.&lt;/p&gt;
&lt;p&gt;I used &lt;strong&gt;Basic 64-bit Amazon Linux AMI 1.0&lt;/strong&gt;&lt;span class="ami_description"&gt;&lt;/span&gt;&lt;span class="ami_description"&gt; on a Micro T1 instance for my test.  Setting up launching and connecting to the instance is a bit out of reach for this post, but I just used the AWS console and followed the instructions to create my key-pair to SSH in.&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span class="ami_description"&gt;Once you have the instance launched and you are connected you use YUM to install apache:&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;
yum install httpd &lt;br /&gt;
yum install httpd-devel&lt;br /&gt;
yum install libstdc++.so.5&lt;/p&gt;
&lt;p&gt;&lt;span class="ami_description"&gt;[The httpd-devl and &lt;/span&gt;libstdc++.so.5 &lt;span class="ami_description"&gt;are required by the Coldfusion installer]&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span class="ami_description"&gt;Then Run:&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span class="ami_description"&gt;chkconfig httpd on &lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span class="ami_description"&gt;[This makes Apache start when the Image starts or you reboot it if you are on an EBS instance]&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span class="ami_description"&gt;Then you need to get the Linux 64bit Coldfusion 9 off the Adobe website.  it's kinda silly you can't get to it with Curl, wGet, or Lynx.  So I downloaded it and put it on a private S3 Bucket the used curl to download it to my new instance&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;span class="ami_description"&gt;&lt;/span&gt;Then I followed &lt;a href="http://www.redelijkheid.com/blog/2010/4/1/adobe-coldfusion-9-on-centos-54-x64.html"&gt;Willem Redelijkheid's post on installing on CENTOS&lt;/a&gt; for directions on installing Coldfusion 9 and it worked like a charm.  Only one slight oddity when the Installer progress bar got to the end on the script it sat there for the longest time.  I hit enter and it displayed the Coldfusion install finished method.  Not sure why.&lt;/p&gt;
&lt;p&gt;Hope this helps someone else.  If you are running Coldfusion 9 on Amazon Linux ping me in the comments to let me know how it's going.&lt;/p&gt;
&lt;p&gt;&lt;span class="ami_description"&gt;&lt;br /&gt;&lt;/span&gt;&lt;/p&gt;</description>
         <link>http://feedproxy.google.com/~r/DigitalRewind/~3/B7UrPsZUprU/amazon-linux-ami-and-coldfusion-9</link>
         <guid isPermaLink="false">http://www.digitalrewind.com/post.cfm/amazon-linux-ami-and-coldfusion-9</guid>
         <category>Amazon AWS</category><category>Coldfusion</category>
         <pubDate>Mon, 20 Sep 2010 16:07:10 GMT</pubDate>
      <feedburner:origLink>http://www.digitalrewind.com/post.cfm/amazon-linux-ami-and-coldfusion-9</feedburner:origLink></item> 
      <item>
         <title>CFIMAGE CMYK workaround to RGB</title>
         <description>&lt;p&gt;I deal with a large amount of CMYK images for work.  Some with Color Profiles and some without.  So far Coldfusion hasn't been much help.  Although it gets  closer with each new release.  Here is my workaround to convert CMYK images into RGB until Adobe lets us convert images with the CFIMAGE tag.&lt;/p&gt;
&lt;h2&gt;Starting Image&lt;/h2&gt;
&lt;p&gt;
&lt;img src="http://www.digitalrewind.com/assets/content/posts/cfimage-cmyk-rgb/bailey-cmyk.jpg" alt="CMYK Image with Color Profile" width="500" height="418" /&gt;&lt;/p&gt;
&lt;p&gt;Above is the starting image of my faithful coding companion Bailey.  I converted it to CMYK and added the U.S. Web Coated (SWOP) v2 color profile in Photoshop.  When you try and read this image in Coldfusion 8/9 it throws:  &lt;/p&gt;
&lt;p&gt;
&lt;code&gt;&lt;span class='comment'&gt;&amp;lt;!--- Try to get image info ---&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span class='cc_cftag'&gt;&amp;lt;cfimage action=&lt;span class='cc_value'&gt;&amp;quot;info&amp;quot;&lt;/span&gt; source=&lt;span class='cc_value'&gt;&amp;quot;#expandpath(&amp;quot;&lt;/span&gt;.&lt;span class='cc_value'&gt;&amp;quot;)#/images/bailey-cmyk-profile-800x600.jpg&amp;quot;&lt;/span&gt; structname=&lt;span class='cc_value'&gt;&amp;quot;cmyk&amp;quot;&lt;/span&gt; /&amp;gt;&lt;/span&gt;&lt;/code&gt;
&lt;/p&gt;
&lt;p&gt;
&lt;code&gt;An exception occurred while trying to read the image.&lt;br /&gt;Unsupported Image Type&lt;/code&gt;
&lt;/p&gt;
&lt;p&gt;
This is where Imagemagick comes in.  We can convert the image to RGB and remove the color profiles so we can continue.  I chose to use a BASH script that I call with CFEXECUTE, but it appears to work calling it directly from CFEXECUTE.  I had problems in the past with this so I have always done it this way, in case you were wondering.&lt;/p&gt;
&lt;code&gt;#!/bin/bash&lt;br /&gt;infile=$1&lt;br /&gt;outfile=$2&lt;br /&gt;/usr/bin/convert $infile -strip -colorspace rgb -quality 100  $outfile&lt;br /&gt;echo &lt;span class='cc_value'&gt;&amp;quot;Convert Finished&amp;quot;&lt;/span&gt;&lt;br /&gt;exit 0&lt;/code&gt;
&lt;p&gt;I pass this script the file I want to convert and where I want to create the new RGB version.  The &lt;a href="http://www.imagemagick.org/script/command-line-options.php#strip"&gt;-strip&lt;/a&gt; command removes all the Photoshop meta data and the color profile.  The &lt;a href="http://www.imagemagick.org/script/command-line-options.php#colorspace"&gt;-colorspace rgb&lt;/a&gt;  command converts the image from CMYK to RGB.  Finally the &lt;a href="http://www.imagemagick.org/script/command-line-options.php#quality"&gt;-quality 100&lt;/a&gt; sets the JPG quality setting for the new image, I created the original at 100 so I just kept it that way for the new one.  (It can be adjusted to your personal preference or requirement from 1 to 100.)  The new image will keep the same dimensions and resolution as the original image had to start.&lt;/p&gt;
&lt;h2&gt;Coldfusion Example&lt;/h2&gt;
&lt;code&gt;&lt;span class='cc_cftag'&gt;&amp;lt;cftry&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span class='comment'&gt;&amp;lt;!--- Try to get image info ---&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span class='cc_cftag'&gt;&amp;lt;cfimage action=&lt;span class='cc_value'&gt;&amp;quot;info&amp;quot;&lt;/span&gt; source=&lt;span class='cc_value'&gt;&amp;quot;#expandpath(&amp;quot;&lt;/span&gt;.&lt;span class='cc_value'&gt;&amp;quot;)#/images/bailey-cmyk-profile-800x600.jpg&amp;quot;&lt;/span&gt; structname=&lt;span class='cc_value'&gt;&amp;quot;cmyk&amp;quot;&lt;/span&gt; /&amp;gt;&lt;/span&gt;&lt;br /&gt; &lt;span class='cc_cftag'&gt;&amp;lt;cfcatch type=&lt;span class='cc_value'&gt;&amp;quot;any&amp;quot;&lt;/span&gt;&amp;gt;&lt;/span&gt;&lt;br /&gt; &lt;span class='comment'&gt;&amp;lt;!--- If it fails convert to RGB and Strip Information with ImageMagick ---&amp;gt;&lt;/span&gt;&lt;br /&gt; &lt;span class='cc_cftag'&gt;&amp;lt;cfexecute name=&lt;span class='cc_value'&gt;&amp;quot;#expandpath(&amp;quot;&lt;/span&gt;.&lt;span class='cc_value'&gt;&amp;quot;)#/img_to_rgb.sh&amp;quot;&lt;/span&gt; &lt;br /&gt;  arguments=&lt;span class='cc_value'&gt;&amp;quot;#expandpath(&amp;quot;&lt;/span&gt;.&lt;span class='cc_value'&gt;&amp;quot;)#/images/bailey-cmyk-profile-800x600.jpg #expandpath(&amp;quot;&lt;/span&gt;.&lt;span class='cc_value'&gt;&amp;quot;)#/images-convert/bailey-rgb-800x600.jpg&amp;quot;&lt;/span&gt; &lt;br /&gt;  timeout=&lt;span class='cc_value'&gt;&amp;quot;30&amp;quot;&lt;/span&gt; variable=&lt;span class='cc_value'&gt;&amp;quot;msg&amp;quot;&lt;/span&gt; /&amp;gt;&lt;/span&gt;&lt;br /&gt; &lt;span class='cc_cftag'&gt;&amp;lt;/cfcatch&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span class='cc_cftag'&gt;&amp;lt;/cftry&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span class='comment'&gt;&amp;lt;!--- Image can now be read ---&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span class='cc_cftag'&gt;&amp;lt;cfimage action=&lt;span class='cc_value'&gt;&amp;quot;info&amp;quot;&lt;/span&gt; source=&lt;span class='cc_value'&gt;&amp;quot;#expandpath(&amp;quot;&lt;/span&gt;.&lt;span class='cc_value'&gt;&amp;quot;)#/images/bailey-rgb-800x600.jpg&amp;quot;&lt;/span&gt; structname=&lt;span class='cc_value'&gt;&amp;quot;cmyk&amp;quot;&lt;/span&gt; /&amp;gt;&lt;/span&gt;&lt;/code&gt;
&lt;p&gt;In the Coldfusion example i created here I first try to read the image information.  If this fails I call the script to convert the image to RGB and remove the profile information.  Then I read the file with CFIMAGE and it works. If that fails then you started out with a bum image to begin with. &lt;/p&gt;
&lt;p&gt; If you aren't on OS X or Linux and want to call ImageMagick directly it would work like this :&lt;/p&gt;
&lt;code&gt;&lt;span class='cc_cftag'&gt;&amp;lt;cftry&amp;gt;&lt;/span&gt;&lt;br /&gt;  &lt;span class='comment'&gt;&amp;lt;!--- Try to get image info ---&amp;gt;&lt;/span&gt;&lt;br /&gt;  &lt;span class='cc_cftag'&gt;&amp;lt;cfimage action=&lt;span class='cc_value'&gt;&amp;quot;info&amp;quot;&lt;/span&gt; source=&lt;span class='cc_value'&gt;&amp;quot;#expandpath(&amp;quot;&lt;/span&gt;.&lt;span class='cc_value'&gt;&amp;quot;)#/images/bailey-cmyk-profile-800x600.jpg&amp;quot;&lt;/span&gt; structname=&lt;span class='cc_value'&gt;&amp;quot;cmyk&amp;quot;&lt;/span&gt; /&amp;gt;&lt;/span&gt;&lt;br /&gt;  &lt;span class='cc_cftag'&gt;&amp;lt;cfcatch type=&lt;span class='cc_value'&gt;&amp;quot;any&amp;quot;&lt;/span&gt;&amp;gt;&lt;/span&gt;&lt;br /&gt;   &lt;span class='comment'&gt;&amp;lt;!--- If it fails convert to RGB and Strip Information with ImageMagick ---&amp;gt;&lt;/span&gt;&lt;br /&gt;   &lt;span class='cc_cftag'&gt;&amp;lt;cfexecute name=&lt;span class='cc_value'&gt;&amp;quot;/usr/bin/convert&amp;quot;&lt;/span&gt; &lt;br /&gt;   arguments=&lt;span class='cc_value'&gt;&amp;quot;#expandpath(&amp;quot;&lt;/span&gt;.&lt;span class='cc_value'&gt;&amp;quot;)#/images/bailey-cmyk-profile-800x600.jpg -strip -colorspace rgb -quality 100 #expandpath(&amp;quot;&lt;/span&gt;.&lt;span class='cc_value'&gt;&amp;quot;)#/images/bailey-rgb-800x600.jpg&amp;quot;&lt;/span&gt; &lt;br /&gt;   timeout=&lt;span class='cc_value'&gt;&amp;quot;30&amp;quot;&lt;/span&gt; variable=&lt;span class='cc_value'&gt;&amp;quot;msg&amp;quot;&lt;/span&gt; /&amp;gt;&lt;/span&gt;&lt;br /&gt;  &lt;span class='cc_cftag'&gt;&amp;lt;/cfcatch&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span class='cc_cftag'&gt;&amp;lt;/cftry&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span class='comment'&gt;&amp;lt;!--- Image can now be read ---&amp;gt;&lt;/span&gt;&lt;br /&gt;&lt;span class='cc_cftag'&gt;&amp;lt;cfimage action=&lt;span class='cc_value'&gt;&amp;quot;info&amp;quot;&lt;/span&gt; source=&lt;span class='cc_value'&gt;&amp;quot;#expandpath(&amp;quot;&lt;/span&gt;.&lt;span class='cc_value'&gt;&amp;quot;)#/images/bailey-rgb-800x600.jpg&amp;quot;&lt;/span&gt; structname=&lt;span class='cc_value'&gt;&amp;quot;cmyk&amp;quot;&lt;/span&gt; /&amp;gt;&lt;/span&gt;&lt;/code&gt;
&lt;h2&gt;RGB Image&lt;br /&gt;&lt;/h2&gt;
&lt;p&gt;&lt;img src="http://www.digitalrewind.com/assets/content/posts/cfimage-cmyk-rgb/bailey-rgb.jpg" alt="RGB File after Conversion" width="500" height="418" /&gt;&lt;/p&gt;
&lt;p&gt;So here is the new image of Bailey that is now RGB and all the Profile information removed.  The coloring of the image changes slightly when you convert it to RGB from CMYK, but so far I haven't found a way to get it any closer.   You can also resize and get the image info with Imagemagick, but I am doing that with CFIMAGE.  In hopes that I can one day just comment this out and all the operations will work consistantly.  &lt;a title="Fix CMYK" href="/post.cfm/cfimage-cmyk-rgb"&gt;Maybe Adobe will fix that in the next release so this can all be done in CFIMAGE.&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Hope this helps out others struggling with the same issue. This works well ( I have converted thousands of images) on Linux and OS X. I haven't tried it on windows, but I would assume it would work by either calling it directly or wrapping it in a BATCH file.  If anyone tries it on Windows let me know.&lt;/p&gt;
&lt;h2&gt;Links&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href="http://www.imagemagick.org/script/index.php" target="_blank"&gt;ImageMagick&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a title="Original Bailey CMYK" href="http://www.digitalrewind.com/assets/content/posts/cfimage-cmyk-rgb/bailey-cmyk-profile-800x600.jpg"&gt;Bailey CMYK&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a title="Final Bailey RGB" href="http://www.digitalrewind.com/assets/content/posts/cfimage-cmyk-rgb/bailey-rgb-800x600.jpg"&gt;Bailey RGB&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a title="Code" href="http://www.digitalrewind.com/assets/content/posts/cfimage-cmyk-rgb/code.zip"&gt;Code till I get the blog displaying better.&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;br/&gt;&lt;br/&gt;</description>
         <link>http://feedproxy.google.com/~r/DigitalRewind/~3/KXL-V4HAVqU/cfimage-cmyk-workaround-rgb</link>
         <guid isPermaLink="false">http://www.digitalrewind.com/post.cfm/cfimage-cmyk-workaround-rgb</guid>
         <category>Coldfusion</category>
         <pubDate>Mon, 16 Aug 2010 02:49:29 GMT</pubDate>
      <feedburner:origLink>http://www.digitalrewind.com/post.cfm/cfimage-cmyk-workaround-rgb</feedburner:origLink></item> 
      <item>
         <title>Vote for CFIMAGE to convert CMYK to RGB</title>
         <description>&lt;p&gt;&lt;a href="http://www.elliottsprehn.com/cfbugs/bugs/79057" target="_blank"&gt;Vote for this Bug / enhancement Fix&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform"&gt;Feature Request Form&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;We work with a lot of CMYK formatted images for our clients.  Their original photography comes from the studio as CMYK Jpegs.  They need to be converted to RGB format for use on our Internet sites so we can't use &lt;a href="http://forums.adobe.com/thread/433679"&gt;CFIMAGE&lt;/a&gt; to create thumbnails or smaller photography.  The only choice we have is to use &lt;a href="http://www.imagemagick.org/script/index.php"&gt;Imagemagick&lt;/a&gt; on the server for all of the image conversion or convert it with &lt;a href="http://www.imagemagick.org/script/index.php"&gt;Imagemagick&lt;/a&gt; and then Resize with &lt;a href="http://forums.adobe.com/thread/433679"&gt;CFIMAGE&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;If you are in the same boat please vote it up or put in a feature request.&lt;/p&gt;</description>
         <link>http://feedproxy.google.com/~r/DigitalRewind/~3/hUJczXZvLAY/cfimage-cmyk-rgb</link>
         <guid isPermaLink="false">http://www.digitalrewind.com/post.cfm/cfimage-cmyk-rgb</guid>
         <category>Coldfusion</category>
         <pubDate>Fri, 13 Aug 2010 04:55:13 GMT</pubDate>
      <feedburner:origLink>http://www.digitalrewind.com/post.cfm/cfimage-cmyk-rgb</feedburner:origLink></item> 
      <item>
         <title>Hello World! - Mango Blog Update</title>
         <description>&lt;p&gt;Hello! and welcome to my blog. This is my first post just to see how things are working.&lt;/p&gt;
&lt;p&gt;Migrating over to Mango Blog.  Will have some of the old content up shortly.  Then I will take a stab at making the updates more regularly.&lt;/p&gt;</description>
         <link>http://feedproxy.google.com/~r/DigitalRewind/~3/AL62iuSlQIs/hello-world</link>
         <guid isPermaLink="false">http://www.digitalrewind.com/post.cfm/hello-world</guid>
         <category>Coldfusion</category>
         <pubDate>Sat, 24 Jul 2010 00:57:38 GMT</pubDate>
      <feedburner:origLink>http://www.digitalrewind.com/post.cfm/hello-world</feedburner:origLink></item> 
      <item>
         <title>Defaulting cursor to the first input box with jQuery</title>
         <description>&lt;p&gt;Here's a short and simple  javascript using Jquery to put the cursor 
in the first text box on a web page.  I added this to one of our sites 
to make sure the cursor starts in the different forms / search boxes on 
all the pages of our site.&lt;/p&gt;
&lt;p&gt;
&lt;code&gt;&lt;span class='cc_normaltag'&gt;&lt;span class='cc_cftag'&gt;&amp;lt;script type=&lt;span class='cc_value'&gt;&amp;quot;text/javascript&amp;quot;&lt;/span&gt;&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;span class='comment'&gt;&amp;lt;!--&lt;br /&gt;  $document.ready(function()){&lt;br /&gt;   $(&lt;span class='cc_value'&gt;&amp;quot;input[type='text']:first&amp;quot;&lt;/span&gt;).select();&lt;br /&gt;  };}&lt;br /&gt;// --&amp;gt;&lt;/span&gt;&lt;span class='cc_normaltag'&gt;&lt;span class='cc_cftag'&gt;&amp;lt;/script&amp;gt;&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/p&gt;
&lt;p&gt;It's using Jquery to find the FIRST :  INPUT tag with a TYPE="TEXT" on the page.  Then it selects it to move the cursor.&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;</description>
         <link>http://feedproxy.google.com/~r/DigitalRewind/~3/BrAa8B5mybY/first-input-jquery</link>
         <guid isPermaLink="false">http://www.digitalrewind.com/post.cfm/first-input-jquery</guid>
         <category>jQuery</category>
         <pubDate>Sun, 17 Jan 2010 01:35:14 GMT</pubDate>
      <feedburner:origLink>http://www.digitalrewind.com/post.cfm/first-input-jquery</feedburner:origLink></item> 
      <item>
         <title>mySQL Updates from more than one table</title>
         <description>&lt;p&gt;I can never seem to remember the mySQL syntax for JOINED updates when
 I need them and the mysql documentation on their site doesn't help a 
whole lot. Then I always forget what the exact phase to google for. 
(Joined updates, multi-table updates, updating from one table to 
another, etc..)  I found some great examples over on the electictoolbox 
that makes it dead simple.&lt;/p&gt;
&lt;p&gt;So I am posting it here as a reminder later on , and in case someone else was wondering how to do it and couldn't find it.&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.electrictoolbox.com/article/mysql/cross-table-update/"&gt;ELECTRICTOOLBOX JOINED UPDATE EXAMPLES&lt;/a&gt;&lt;/p&gt;</description>
         <link>http://feedproxy.google.com/~r/DigitalRewind/~3/c1i3l6jImd8/mysql-updates-from-more-than-one-table</link>
         <guid isPermaLink="false">http://www.digitalrewind.com/post.cfm/mysql-updates-from-more-than-one-table</guid>
         <category>Coldfusion</category><category>mySQL</category>
         <pubDate>Fri, 01 May 2009 04:00:00 GMT</pubDate>
      <feedburner:origLink>http://www.digitalrewind.com/post.cfm/mysql-updates-from-more-than-one-table</feedburner:origLink></item> 
   </channel>
</rss>

