<?xml version="1.0" encoding="utf-8"?>
			
			<rss version="2.0">
			<channel>
			<title>Florida Search Engine Optimization - SEO - SEM - Blog - Edward Beckett - Blog</title>
			<link>http://www.edwardbeckett.com/Blog/index.cfm</link>
			<description>Search Engine Optimization - Florida SEO Specialist - SEM Expert - Consultant</description>
			<language>en-us</language>
			<pubDate>Tue, 07 Sep 2010 02:43:45 -0400</pubDate>
			<lastBuildDate>Wed, 01 Sep 2010 19:12:00 -0400</lastBuildDate>
			<generator>BlogCFC</generator>
			<docs>http://blogs.law.harvard.edu/tech/rss</docs>
			<managingEditor>edward@edwardbeckett.com</managingEditor>
			<webMaster>edward@edwardbeckett.com</webMaster>
			
			<item>
				<title>Florida SEO - Back to the SEO Blog After a Year</title>
				<link>http://www.edwardbeckett.com/Blog/index.cfm/2010/9/1/Florida-SEO--Back-to-the-SEO-Blog-After-a-Year</link>
				<description>
				
				Well I&apos;ve decided to start getting back to blogging after a year long hiatus. I really don&apos;t have a lot to say on this return post except that it&apos;s officially been one year since I&apos;ve done any other writing and I figured that it&apos;s time to get back to the SEO Blog. 

That&apos;s It. 

:-) 
				</description>
				
				<category>ColdFusion</category>				
				
				<category>Google</category>				
				
				<category>Life</category>				
				
				<category>Blog</category>				
				
				<category>Me</category>				
				
				<category>SEO</category>				
				
				<pubDate>Wed, 01 Sep 2010 19:12:00 -0400</pubDate>
				<guid>http://www.edwardbeckett.com/Blog/index.cfm/2010/9/1/Florida-SEO--Back-to-the-SEO-Blog-After-a-Year</guid>
				
			</item>
			
			<item>
				<title>Florida SEO &amp;#187; Blog  Humbug  &amp;#187; Blah Blah Blah</title>
				<link>http://www.edwardbeckett.com/Blog/index.cfm/2008/12/19/Florida-SEO-187-Blog--Humbug--187-Blah-Blah-Blah</link>
				<description>
				
				Okay ... I haven&apos;t been blogging too much as most of those that I speak to have mentioned ... Well ... I have to be honest ... I really haven&apos;t been interested enough in anything to write ... maybe I&apos;m just being resistant to the &quot;Once a Week&quot; suggestions from the blogging pros ... 

For what it&apos;s worth ... the blog bug has somewhat returned ... so, I&apos;ll try to get back to writing at least once a week ... Blog ... Blah ... Blah ... Let&apos;s see how long this lasts ... Oh yeah ... Have a Merry Christmas and a Happy New Year ... If I don&apos;t blog again before their times arrive ... 

Blog Humbug ... 
				</description>
				
				<category>Blog</category>				
				
				<category>ColdFusion</category>				
				
				<category>Social Media</category>				
				
				<category>SEM</category>				
				
				<category>Arts</category>				
				
				<category>Society</category>				
				
				<category>Search Engine Optimization</category>				
				
				<category>Culture</category>				
				
				<category>Me</category>				
				
				<category>Life</category>				
				
				<category>SEO</category>				
				
				<pubDate>Fri, 19 Dec 2008 13:43:00 -0400</pubDate>
				<guid>http://www.edwardbeckett.com/Blog/index.cfm/2008/12/19/Florida-SEO-187-Blog--Humbug--187-Blah-Blah-Blah</guid>
				
			</item>
			
			<item>
				<title>BlogCFC XML-RPC &amp;amp; Windows Live Writer</title>
				<link>http://www.edwardbeckett.com/Blog/index.cfm/2008/3/10/BlogCFC-XMLRPC-amp-Windows-Live-Writer-</link>
				<description>
				
				&lt;p&gt;I recently decided to take a shot at creating Blog entries to BlogCFC through a desktop publishing application. ScribeFire, is a nice tool that offers the ability to create Blog posts directly to from Firefox. Yet, it lacked quality functionality and support that is required for those that are doing serious publishing. While searching through the ColdFusion Blogging community lately, I&amp;nbsp; ran across several articles suggesting the use of Google Docs as a method for posting to BlogCFC too. I really didn&apos;t&amp;nbsp; care for that method either.&lt;/p&gt; &lt;p&gt;So I managed to find a reference on Ray Camden&apos;s Blog to using Windows Live Writer via XML-RPC.&amp;nbsp; BlogCFC has been supporting XML-RPC for some time now, so I was eager to start using it after I figured out what it was actually was capable of doing. For those that are not familiar with XML-RPC, it is a specification that allows connections between two computers through remote procedure calls to XML.&lt;/p&gt; &lt;p&gt;The reference on Ray&apos;s site was to a demo from &lt;a title=&quot;Dan Vega Demo on Live Writer&quot; href=&quot;http://www.danvega.org/blog/index.cfm/2007/6/29/Windows-Live-Writer-amp-BlogCFC-Part-II&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;Dan Vega&lt;/a&gt;, which explains how to get the writer up and running. Several things have to be pointed out though. First, the categories from BlogCFC are not editable from WLR. To edit those, you&apos;ll have to go in to the BlogCFC admin. Second, the style sheets from BlogCFC don&apos;t seem to import correctly. That doesn&apos;t seem to carry over in the post though so personally I can handle dealing with it. Another thing is, deleting posts from within WLR, will remove the entry from the Blog, but not from the xmlrpc.cfm cache or, rather the ScopeCache.cfm template ... in order to deal with that, you might want to add the code below to the xmlrpc.cfm file, just below the blogger.deletePost case switch statement around lines 185-190.&lt;/p&gt; &lt;pre &gt;
&lt;code&gt;
	&lt;!--- clear cache ---&gt;

		&lt;cfmodule clearall=&quot;true&quot; scope=&quot;application&quot; template=&quot;../tags/scopecache.cfm&quot;&gt;


&lt;/code&gt;
&lt;/pre&gt;
 
&lt;p&gt;This way the Blog&apos;s cache will update whenever you delete a post ... Much thanks goes out to &lt;a title=&quot;Shane&quot; href=&quot;http://www.kisdigital.com&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;Shane&lt;/a&gt; for that.&lt;/p&gt;
&lt;p&gt;All and all, I must admit that editing in WLR is very clean - much nicer than working directly in an online editor, and though WLR does not have the power of a word processor, or the design and HTML editing capabilities of an IDE, it is still a nice tool to use for creating blog posts.&lt;/p&gt; 
				</description>
				
				<category>ColdFusion</category>				
				
				<category>BlogCFC</category>				
				
				<category>Blog</category>				
				
				<pubDate>Mon, 10 Mar 2008 15:40:41 -0400</pubDate>
				<guid>http://www.edwardbeckett.com/Blog/index.cfm/2008/3/10/BlogCFC-XMLRPC-amp-Windows-Live-Writer-</guid>
				
			</item>
			
			<item>
				<title>Florida SEO Bringing on Visuals - CFlickr CFC</title>
				<link>http://www.edwardbeckett.com/Blog/index.cfm/2008/3/4/Florida-SEO-Bringing-on-Visuals--CFlickr-CFC</link>
				<description>
				
				&lt;p&gt;I recently decided that it was about time to start adding some imagery to my Blog. I am the first person to go to bat for Content being the King on the web, but straight text content can at times be a little boring to look at. So I went on the hunt for a simple way to add life to my blog.&lt;/p&gt;
&lt;p&gt;I found an API called CFlickr, that is written in ColdFusion and provides the ability to work with Flickr&apos;s &lt;a rel=&quot;nofollow&quot; href=&quot;http://www.flickr.com/services/api/&quot; target=&quot;_blank&quot;&gt;REST API&lt;/a&gt;. There are some really cool examples of the things that you can do with the API over at &lt;a rel=&quot;nofollow&quot; href=&quot;http://www.sixfive.co.uk/index.cfm/2007/4/12/Listing-sets-from-Flickr-with-CFlickr&quot; target=&quot;_blank&quot;&gt;SixFive&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;CFlickr&apos;s developer, (Chris Blackwell), gives some very good examples of how the API can be used to develop dynamic pages through working with the API. He has even gone through the trouble of setting up the &lt;a rel=&quot;nofollow&quot; href=&quot;http://chris.m0nk3y.net/projects/CFlickr/Documentation/&quot; target=&quot;_blank&quot;&gt;CFC&apos;s Documentation&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;If you haven&apos;t ever worked with ColdFusion Components, there are a few things that you have to do to make sure that the component works correctly. If you are in a shared hosting environment, you will have to ask your host to provide a mapping to the directory where CFlickr is under your web root. Make sure you are careful to get the mapping right ... if you aren&apos;t ... you will find out really fast.&lt;/p&gt;
&lt;p&gt;I&apos;m not going to try to go in to a tutorial on using the API just yet, but if you are interested in learning more about it, you can get more at the &lt;a rel=&quot;nofollow&quot; href=&quot;http://chris.m0nk3y.net/projects/CFlickr/&quot; target=&quot;_blank&quot;&gt;CFlickr Site&lt;/a&gt;.&lt;/p&gt; 
				</description>
				
				<category>Blog</category>				
				
				<category>Search Engine Optimization</category>				
				
				<category>CFlickr</category>				
				
				<category>CFC</category>				
				
				<pubDate>Tue, 04 Mar 2008 03:16:00 -0400</pubDate>
				<guid>http://www.edwardbeckett.com/Blog/index.cfm/2008/3/4/Florida-SEO-Bringing-on-Visuals--CFlickr-CFC</guid>
				
			</item>
			
			<item>
				<title>Florida SMO A List SEO</title>
				<link>http://www.edwardbeckett.com/Blog/index.cfm/2008/2/23/Florida-SMO-A-List-SEO</link>
				<description>
				
				While cruising around the Social Media Optimization world recently, I found my way to a very cool blog on SMO and SEM ... if you want to learn some inside info into the world of SMO ... check out &lt;a href=&quot;http://www.alistseo.com/&quot; target=&quot;_blank&quot;&gt;A List SEO&lt;/a&gt; ... you might learn a little ... 
				</description>
				
				<category>SEM</category>				
				
				<category>Blog</category>				
				
				<category>SMO</category>				
				
				<category>SEO</category>				
				
				<pubDate>Sat, 23 Feb 2008 00:35:00 -0400</pubDate>
				<guid>http://www.edwardbeckett.com/Blog/index.cfm/2008/2/23/Florida-SMO-A-List-SEO</guid>
				
			</item>
			
			<item>
				<title>SEO BlogCFC Moves In</title>
				<link>http://www.edwardbeckett.com/Blog/index.cfm/2007/11/4/SEO-BlogCFC-Moves-In-Edward-Beckett</link>
				<description>
				
				This is the greatest... I have been eagerly awaiting the day that I could actually get to put the BlogCFC in to the site ... There were a lot of obstacles to work around to actually get the Blog together. First and foremost was that I had my site hosted at GoDaddy ... I am not much for slinging mud so I&apos;ll just try to leave my comment minimal. 

If you are looking for ColdFusion hosting ... there are much better alternatives to the shared plan that GoDaddy provides. Do your self a BIG favor ... Keep looking. I&apos;m happy to say that though I have only been with my new host for three days, Host My Site has delivered fantastic customer service thus far. 

Next thing on the development list is to start chopping in to the CSS on this blog and see how well I can style the elements to mirror that of my site ... Well, onward to the world of CSS ... untill next time. 
				</description>
				
				<category>ColdFusion</category>				
				
				<category>Blog</category>				
				
				<category>SEO</category>				
				
				<pubDate>Sun, 04 Nov 2007 19:21:00 -0400</pubDate>
				<guid>http://www.edwardbeckett.com/Blog/index.cfm/2007/11/4/SEO-BlogCFC-Moves-In-Edward-Beckett</guid>
				
			</item>
			</channel></rss>