<?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>Web Design and ColdFusion Blog</title>
			<link>http://www.cfcoffee.co.uk/index.cfm</link>
			<description>Glyn Jackson&apos;s ColdFusion, Web Design and Web Development Blog. Award Winning Web Design Staffordshire and Manchester.</description>
			<language>en-gb</language>
			<pubDate>Sat, 19 May 2012 06:53:11 +0100</pubDate>
			<lastBuildDate>Tue, 27 Sep 2011 11:53:00 +0100</lastBuildDate>
			<generator>BlogCFC</generator>
			<docs>http://blogs.law.harvard.edu/tech/rss</docs>
			<managingEditor>cfsparky@gmail.com</managingEditor>
			<webMaster>cfsparky@gmail.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>cfsparky@gmail.com</itunes:email>
				<itunes:name></itunes:name>
			</itunes:owner>
			
			<itunes:explicit>no</itunes:explicit>
			
			
			
			
			
			<item>
				<title>SerializeJSON() and ORM watch out!</title>
				<link>http://www.cfcoffee.co.uk/index.cfm/2011/9/27/SerializeJSON-and-ORM-watch-out</link>
				<description>
				
				&lt;p&gt;I&apos;m not sure if this is a bug or the way ColdFusion 9.0.1 works, but today I had an issue with the way ColdFusion was serialising an ORM Entity.&lt;/p&gt;

&lt;p/&gt;I was making a simply AJAX call and in CF using serialiseJSON() method on an ORM object. My issue was that any object that had a property that was an array of other objects was not being returned.&lt;/p&gt;

&lt;p/&gt;I posted the issue on  &lt;a href=&quot;http://stackoverflow.com/questions/7557385/serializing-a-complex-object-orm-entity-dealing-with-relational-entities&quot; traget=&quot;_blank&quot;&gt;stackoverflow&lt;/a&gt; but then I remembered having the same issue in a Google Group Post on Taffy. I remember resolving this at the time by splitting up the object and basically recreating it again. I was about to do the same thing then on the Adobe livedocs and spotted &quot;remotingFetch&quot;&lt;/p&gt;


&lt;p&gt;&lt;b&gt;Quote:&lt;/b&gt; &quot;If remotingFetch is false, then the value of that attribute is not sent over flash remoting. The attribute is true by default for all properties. However, for ORM CFCs where persistent = true, the value of the remotingFetch attribute is set to false, by default, for one-to-one, one-to-many, many-to-one, or many-to-many relationships.
After enabling this on my relationship it fixed the issue! However as this was referred to under &quot;flash remoting.&quot; I missed it the first time around.&quot;&lt;/p&gt;


&lt;p&gt;After enabling this on my relationship it fixed the issue! As this was referred to under &quot;flash remoting.&quot;  I missed it the first time around. Just something to watch out for.&lt;/p&gt;
				
				</description>
				
				
				<category>ORM</category>
				
				<category>ColdFusion 9</category>
				
				<category>ColdFusion</category>
				
				<pubDate>Tue, 27 Sep 2011 11:53:00 +0100</pubDate>
				<guid>http://www.cfcoffee.co.uk/index.cfm/2011/9/27/SerializeJSON-and-ORM-watch-out</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>API Authentication with Taffy</title>
				<link>http://www.cfcoffee.co.uk/index.cfm/2011/9/22/API-Authentication-with-Taffy</link>
				<description>
				
				&lt;p&gt;Recently I have been working with &lt;a href=&quot;http://fusiongrokker.com/post/taffy-a-restful-framework-for-coldfusion&quot; title=&quot;Taffy&quot; target=&quot;_blank&quot;&gt;Taffy&lt;/a&gt; to create a simply REST API. The API is used by a native mobile application on the iPhone. When it was complete I needed a simply way to authentication the application talking to the API.&lt;/p&gt;

&lt;p&gt;This is not something I was familiar with at all. I looked into lots of different methods before I started.  I really did not want, nor have the experience to reinvent the wheel, so I look at current methodologies around the web.&lt;/p&gt;

&lt;p&gt;My first attempt was BASIC authentication, but this did not feel right. For reasons I won&apos;t go into here, the API was not over HTTPS, anyone could sniff out the password. Bad, very bad!&lt;/p&gt;


&lt;p&gt;I found a really good post by Greg Moser on &lt;a href=&quot;http://www.gregmoser.com/blog/ajax-authentication-with-taffy-rest-api/&quot; title=&quot;AJAX Authentication with Taffy REST API&quot; target=&quot;_blank&quot;&gt;AJAX Authentication with Taffy REST API&lt;/a&gt;. He talks about using sessions as an API key. This is a good idea, but as my application is mobile, not really applicable for my situation. However his post did get me thinking and was very helpful.&lt;/p&gt;

&lt;p&gt;I didn&apos;t need the complexity of OAuth. I found that  I liked the way Amazon secures their API. So I looked more into this approach.&lt;/p&gt;

&lt;p&gt;I needed a simple &quot;half OAuth&quot; approach. Mainly without the user having to approve.  This is how I got my head around it all and what I ended up with, code and explanation below.&lt;/p&gt;
				 [More]
				</description>
				
				
				<category>ColdFusion 9</category>
				
				<category>ColdFusion</category>
				
				<pubDate>Thu, 22 Sep 2011 14:36:00 +0100</pubDate>
				<guid>http://www.cfcoffee.co.uk/index.cfm/2011/9/22/API-Authentication-with-Taffy</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>Check file size before ColdFusion upload</title>
				<link>http://www.cfcoffee.co.uk/index.cfm/2011/9/19/Check-file-size-before-upload</link>
				<description>
				
				I found a neat little way of checking a file size before full upload in CF by using Java io. In Java the following &quot;file.length();&quot; will get the number of bytes in the file. In CF you can do this...

&lt;code&gt;
 createObject(&quot;java&quot;,&quot;java.io.File&quot;).init(&quot;image.png&quot;).length()
&lt;/code&gt;

So something like this is neat and tidy. 

&lt;code&gt;
if (createObject(&quot;java&quot;,&quot;java.io.File&quot;).init(&quot;image.png&quot;).length() gt xx)
   return false;
 else 
    fileUpload(&quot;D:\&quot;,&quot;#arguments.image#&quot;,&quot;&quot;,&quot;makeUnique&quot;);
&lt;/code&gt;


There are of course many other ways of doing this, but simple things like this impress me.
				
				</description>
				
				
				<category>ColdFusion</category>
				
				<pubDate>Mon, 19 Sep 2011 14:39:00 +0100</pubDate>
				<guid>http://www.cfcoffee.co.uk/index.cfm/2011/9/19/Check-file-size-before-upload</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>Augmented reality App: Unlocks discounts in Manchester</title>
				<link>http://www.cfcoffee.co.uk/index.cfm/2011/8/8/Augmented-reality-App-Unlocks-discounts-in-Manchester</link>
				<description>
				
				Gencia Media has created an augmented reality app that allows people to access discounts at Manchester retailers and leisure venues.

Users who have downloaded the free app are encouraged to find &apos;hearts&apos; - with graphics inspired by the Park Inn&apos;s mosaic branding - around the city at various points of interest. 

Using the GPS systems within their smartphone they can wander the city and, upon finding the pictured hearts, download and unlock offers at Tiger Tiger and Papa Gs at the Printworks, retailers such as Nicky Clarke and Calvin Klein and attractions including the Manchester Big Wheel, Manchester Ghost Walks and Manchester Museum.

&lt;img src=&quot;http://www.cfcoffee.co.uk/images/parkinn.jpg&quot; /&gt;


More Info: 
http://www.how-do.co.uk/north-west-media-news/north-west-digital-media/augmented-reality-app-unlocks-discounts-in-manchester-with-park-inn-2011080410095
				
				</description>
				
				
				<category>Press</category>
				
				<category>Project Showcases</category>
				
				<pubDate>Mon, 08 Aug 2011 15:36:00 +0100</pubDate>
				<guid>http://www.cfcoffee.co.uk/index.cfm/2011/8/8/Augmented-reality-App-Unlocks-discounts-in-Manchester</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>Park Inn Win Offers for Manchester UK</title>
				<link>http://www.cfcoffee.co.uk/index.cfm/2011/6/9/Park-Inn-Win-Offer-for-Manchester-UK</link>
				<description>
				
				&lt;p&gt;Here&apos;s a sample itinerary involving a few of our partners. If you are planning a weekend out in Manchester over the next few weeks you really should check out the parkinnwin.co.uk website. Saving galore! &lt;/p&gt;
&lt;table width=&quot;99%&quot; border=&quot;1&quot;&gt;
  &lt;tr&gt;
    &lt;td colspan=&quot;2&quot; align=&quot;left&quot; valign=&quot;top&quot;&gt;&lt;strong&gt;Friday&lt;/strong&gt;&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt;
    &lt;td width=&quot;7%&quot; align=&quot;left&quot; valign=&quot;top&quot;&gt;2pm &lt;/td&gt;
    &lt;td width=&quot;93%&quot;&gt;Check into Park Inn by Radisson Manchester Victoria receiving your 10% discount.    &lt;a href=&quot;http://www.parkinnwin.co.uk/index.cfm/vouchers/park-inn-manchester-victoria2/&quot; target=&quot;_blank&quot;&gt;Offer Link&lt;/a&gt;
    &lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt;
    &lt;td align=&quot;left&quot; valign=&quot;top&quot;&gt;3pm&lt;/td&gt;
    &lt;td&gt;Enjoy a Spa Treatment in your hotel with 25% off, plus a refreshing swim and sauna. &lt;a href=&quot;http://www.parkinnwin.co.uk/index.cfm/vouchers/park-inn-manchester-victoria/&quot; target=&quot;_blank&quot;&gt;Offer Link&lt;/a&gt;&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt;
    &lt;td align=&quot;left&quot; valign=&quot;top&quot;&gt;6.30pm&lt;/td&gt;
    &lt;td&gt;Enjoy 10% off your Dinner at the hotel &lt;a href=&quot;http://www.parkinnwin.co.uk/index.cfm/vouchers/park-inn-manchester-victoria1/&quot; target=&quot;_blank&quot;&gt;Offer Link &lt;/a&gt;&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt;
    &lt;td align=&quot;left&quot; valign=&quot;top&quot;&gt;8.30pm&lt;/td&gt;
    &lt;td&gt;Watch a  film at AMC Cinema for less than &#xa3;5 &lt;a href=&quot;http://www.parkinnwin.co.uk/index.cfm/vouchers/amc-cinemas/&quot; target=&quot;_blank&quot;&gt;Offer Link&lt;/a&gt;&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt;
    &lt;td align=&quot;left&quot; valign=&quot;top&quot;&gt;11:30pm&lt;/td&gt;
    &lt;td&gt;20% off quite drinks at multi award winning Rain Bar. &lt;a href=&quot;http://www.parkinnwin.co.uk/index.cfm/vouchers/the-rain-bar/&quot; target=&quot;_blank&quot;&gt;Offer Link&lt;/a&gt;&lt;/td&gt;
  &lt;/tr&gt;
&lt;/table&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;table width=&quot;99%&quot; border=&quot;1&quot;&gt;
  &lt;tr&gt;
    &lt;td colspan=&quot;2&quot; align=&quot;left&quot; valign=&quot;top&quot;&gt;&lt;strong&gt;Saturday &lt;/strong&gt;&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt;
    &lt;td width=&quot;7%&quot; align=&quot;left&quot; valign=&quot;top&quot;&gt;10:30am&lt;/td&gt;
    &lt;td width=&quot;93%&quot;&gt; Breakfast served in the hotel where you can claim your 10% discount. &lt;a href=&quot;http://www.parkinnwin.co.uk/index.cfm/vouchers/park-inn-manchester-victoria1/&quot; target=&quot;_blank&quot;&gt;Offer Link&lt;/a&gt;
    &lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt;
    &lt;td align=&quot;left&quot; valign=&quot;top&quot;&gt;12pm &lt;/td&gt;
    &lt;td&gt;Take a ride on the Manchester Big wheel and get 10% off &lt;a href=&quot;http://www.parkinnwin.co.uk/index.cfm/vouchers/the-wheel-of-manchester/&quot;&gt;Offer Link&lt;/a&gt;&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt;
    &lt;td align=&quot;left&quot; valign=&quot;top&quot;&gt;1:15pm&lt;/td&gt;
    &lt;td&gt;Shopping at Spinningfields Fields where you can receive discount in shops such as Calvin Klein and Cotswold Outdoor. &lt;a href=&quot;http://www.parkinnwin.co.uk/index.cfm/vouchers/calvin-klein/&quot; target=&quot;_blank&quot;&gt;Offer Link &lt;/a&gt;&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt;
    &lt;td align=&quot;left&quot; valign=&quot;top&quot;&gt;4pm&lt;/td&gt;
    &lt;td&gt;25% off an ultimate hair experience at Nicky Clarke &lt;a href=&quot;http://www.parkinnwin.co.uk/index.cfm/vouchers/nicky-clarke/&quot; target=&quot;_blank&quot;&gt;Offer Link&lt;/a&gt;&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt;
    &lt;td align=&quot;left&quot; valign=&quot;top&quot;&gt;7pm&lt;/td&gt;
    &lt;td&gt;20% off your food and drink bill when you are dining at Papa G&apos;s in The Printworks &lt;a href=&quot;http://www.parkinnwin.co.uk/index.cfm/vouchers/papa-gs-at-the-printworks/&quot; target=&quot;_blank&quot;&gt;Offer Link&lt;/a&gt;&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt;
    &lt;td align=&quot;left&quot; valign=&quot;top&quot;&gt;8.30pm&lt;/td&gt;
    &lt;td&gt;Free Entry to Tiger Tiger! . &lt;a href=&quot;http://www.parkinnwin.co.uk/index.cfm/vouchers/tigertiger-free-entry/&quot;&gt;Offer Link &lt;/a&gt;&lt;/td&gt;
  &lt;/tr&gt;
  &lt;tr&gt;
    &lt;td align=&quot;left&quot; valign=&quot;top&quot;&gt;8.35pm&lt;/td&gt;
    &lt;td&gt;Get very drunk with 50% off drink and sign song with Buy 1 get an hour feree Lucky Voice at Tiger Tiger &lt;a href=&quot;http://www.parkinnwin.co.uk/index.cfm/vouchers/tigertiger/&quot; target=&quot;_blank&quot;&gt;Offer Link&lt;/a&gt;&lt;/td&gt;
  &lt;/tr&gt;
&lt;/table&gt;
&lt;p&gt;Lots more offers are still being added! O, and I forgot, the biggest, a chance to win a whole years stay at the ParkInn Manchester! &lt;/p&gt;
				
				</description>
				
				
				<category>Press</category>
				
				<category>Chit Chat and Reviews</category>
				
				<pubDate>Thu, 09 Jun 2011 12:54:00 +0100</pubDate>
				<guid>http://www.cfcoffee.co.uk/index.cfm/2011/6/9/Park-Inn-Win-Offer-for-Manchester-UK</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>Mura: New ORM Tag Attribute</title>
				<link>http://www.cfcoffee.co.uk/index.cfm/2011/4/20/Mura-New-ORM-Tag-Attribute</link>
				<description>
				
				&lt;p&gt;I have just been informed on the &lt;a href=&quot;http://groups.google.com/group/slatwallecommerce&quot; target=&quot;_blank&quot;&gt;Google Group for Slatwall Ecommerce&lt;/a&gt; that the hardworking Mura team have push out a minor update recently. The change in version 5.4.4456 +  allows you better integration for ORM within your Mura plugins. True to the style of BR, it&apos;s super easy to configure too.&lt;/p&gt;

&lt;p&gt;Within your plugin config XML file just add the following attribute...&lt;/p&gt;

&lt;code&gt;&lt;ormcfclocation&gt;your path here&lt;/ormcfclocation&gt;&lt;/code&gt;

&lt;p&gt;You can also configure custom tags paths with the new tag attribute, which is cool! Greg and the ten24 team that created the Slatwall Ecommerce Plugin have been making real good use of this new feature. See for yourself by download at &lt;a href=&quot;https://github.com/ten24/Slatwall&quot; target=&quot;_blank&quot;&gt;GitHub&lt;/a&gt;.&lt;/p&gt;
				
				</description>
				
				
				<category>ORM</category>
				
				<category>Slatwall</category>
				
				<category>Chit Chat and Reviews</category>
				
				<category>Mura CMS</category>
				
				<pubDate>Wed, 20 Apr 2011 21:16:00 +0100</pubDate>
				<guid>http://www.cfcoffee.co.uk/index.cfm/2011/4/20/Mura-New-ORM-Tag-Attribute</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>CFMAP: address not valid error message solved</title>
				<link>http://www.cfcoffee.co.uk/index.cfm/2011/4/14/CFMAP-address-not-valid-error-message-solved</link>
				<description>
				
				&lt;p&gt;
After some minor frustration today with CFMAP and the way it sends addresses to a geocoding service, I am now back on track. I just wanted to write a quick post for anyone else that may run into the same issue.  CFMAP was leading me down the wrong path, telling me a bunch of addresses were invalid - &quot;not found&quot;. When I directly used the geocoding functionality from Google to test the addresses i.e.
&lt;/p&gt;

&lt;code&gt;
&quot;http://maps.google.com/maps/geo?q=#address#&amp;output=csv&amp;sensor=false&amp;ke y#yourgooglekey#
200,5,52.6006027,-1.1840779
&lt;/code&gt;

&lt;p&gt;Google returned &quot;ok&quot; status code, including the longitude and latitude details I needed. The addresses was indeed valid as far as Google was concerned. So something else was afoot.&lt;/p&gt;

&lt;p&gt;Next, I tried the longitude and latitude values in CFMAP and excluded address attribute. This time however all my 50 markers were loaded correctly with no errors.&lt;/p&gt; 

&lt;p&gt;I looked at the Google Maps API in more detail. I found they had implemented a geolocation service that takes the address you&apos;ve supplied, and then converts it to longitude etc. As it turns out this geolocation service restricts the total number of requests, per second you can make. It seems CFMAP uses this same geolocation service when you don&apos;t have longitude or latitude in your map item tag.&lt;/p&gt;

&lt;p&gt;Looking at my own source, ColdFusion makes all the requests to this service in just one call. After the confusing error message, I was beginning to think this was my issue and not that the addresses were invalid.&lt;/p&gt;

&lt;p&gt;Anyhow, a quick Google, and &lt;a href=&quot;http://www.coldfusionjedi.com/index.cfm/2009/12/15/Having-trouble-with-too-many-map-markers-and-CFMAP&quot;&gt;Jedi Master&lt;/a&gt; to the rescue! &lt;b&gt;Easy when you know what to search for, right?&lt;/b&gt;&lt;/p&gt;  

&lt;p&gt;Ray resolved this issue by calling a CFC to get the lat and lon points, then sleeping for 500ms before continuing in the loop, he saves the results into the application scope and then keep looping, checking if it exists until he has them all in this app scope.  &lt;/p&gt;

&lt;p&gt;I decided to use this solution, but in a different way. I did not want to use the application scope because my data changes to often.&lt;/p&gt; 

&lt;p&gt;So I change my approach. I created two new fields in my database for both longitude and latitude. When my users creates a new &quot;address&quot; via my backend, I create the &lt;a href=&quot;http://googlegeocoder3.riaforge.org/&quot; target=&quot;_blank&quot;&gt;Google Geocoder V3 CFC&lt;/a&gt;. And then save the results to a database. As my users add events one at a time, I would not run into the restriction here... Well, I could, but it&apos;s very unlikely, right?
&lt;/p&gt;

&lt;code&gt;
// Geo Get Funtions
local.geo = createObject(&quot;component&quot;, &quot;eventManagerApp.com.utility.googlegeocoder3&quot;);
local.geoResults = geo.googlegeocoder3(address=&quot;#rc.venueDetails.getvenueAddressLine1()# &amp; #rc.venueDetails.getvenuePostCode()#&quot;);
// Save Geo Function
rc.venueDetails.setvenueLon(local.geoResults.longitude);
rc.venueDetails.setvenueLat(local.geoResults.latitude);
rc.venueDetails.setvenueAddressType(local.geoResults.result_type);
// Save
rc.venueDetails = geteventVenueService().save(entity=rc.venueDetails);
&lt;/code&gt;

&lt;p&gt;I could now use the raw longitude and latitude data without calling the geo service by using the address attribute and incurring the per second restrictions.&lt;/p&gt;

&lt;p&gt;I loaded over 50 markers without any issues! Thank You... O, and what a run around!&lt;/p&gt;
				
				</description>
				
				
				<category>ColdFusion 9</category>
				
				<category>ColdFusion</category>
				
				<pubDate>Thu, 14 Apr 2011 14:58:00 +0100</pubDate>
				<guid>http://www.cfcoffee.co.uk/index.cfm/2011/4/14/CFMAP-address-not-valid-error-message-solved</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>Mura CMS - Shadowbox issues</title>
				<link>http://www.cfcoffee.co.uk/index.cfm/2011/3/16/Mura-CMS--Shadowbox-issues</link>
				<description>
				
				&lt;p&gt;I had a few issue this morning getting shadowbox to work within my plug-in view. Maybe below will helps other with similar issues.&lt;/p&gt;

&lt;ul&gt;
&lt;li&gt;1) Shadowbox scripts only got added by Mura to header when logged in as an administrator.&lt;/li&gt;
&lt;li&gt;2) Shadowbox will not load pages that don&apos;t have file extensions.&lt;/li&gt;
&lt;/ul&gt;

&lt;p&gt;Both of these issues were a simple fix. Let&apos;s look at the first problem.&lt;/p&gt; 

&lt;p&gt;Shadow Box scripts were only loaded when logged in as an administrator. This is because Mura uses these scripts for the edit page function across the top when logged in. However this meant when I was logged in as a user this edit page option is not available thus Mura does not load unnecessary scripts i.e. shadowbox.js&lt;/p&gt; 

&lt;p&gt;This is good, but in my case I needed the scripts to be included in my layout. Thankfully Mura has made loading all the necessary scripts into the page very easy.&lt;/p&gt; 

&lt;code&gt;
cfset $.getContentRenderer().loadShadowBoxJS()/&gt;
&lt;/code&gt; 

&lt;p&gt;See I told you it was easy! - Honest that&apos;s it! Thanks Mura :)&lt;/p&gt;

&lt;p&gt;Second issue I then had was with Shadowbox itself, not Mura. &lt;/p&gt;

&lt;p&gt;
Because I don&apos;t use file extensions (IIS rewrite) and if I did then I think index.cfm handles the loading requests anyway at /path/. This means none of my paths actually have filenames or extension, meaning they don&apos;t get loaded in to shadow box&lt;/p&gt;

&lt;code&gt;
&lt;a href=&quot;#buildURL( &apos;public:widget.external&apos; )#&quot; rel=&quot;shadowbox&quot; &gt;My Link&lt;/a&gt;
&lt;/code&gt;

&lt;p&gt;Looking at the Shadowbox.js file Mura includes I could see the following lines...&lt;/p&gt;

&lt;code&gt;
        ext:     {
            img:        [&apos;png&apos;, &apos;jpg&apos;, &apos;jpeg&apos;, &apos;gif&apos;, &apos;bmp&apos;],
            qt:         [&apos;dv&apos;, &apos;mov&apos;, &apos;moov&apos;, &apos;movie&apos;, &apos;mp4&apos;],
            wmp:        [&apos;asf&apos;, &apos;wm&apos;, &apos;wmv&apos;],
            qtwmp:      [&apos;avi&apos;, &apos;mpg&apos;, &apos;mpeg&apos;],
            iframe:     [&apos;asp&apos;, &apos;aspx&apos;, &apos;cgi&apos;, &apos;cfm&apos;, &apos;htm&apos;, &apos;html&apos;, &apos;pl&apos;, &apos;php&apos;,
                        &apos;php3&apos;, &apos;php4&apos;, &apos;php5&apos;, &apos;phtml&apos;, &apos;rb&apos;, &apos;rhtml&apos;, &apos;shtml&apos;,
                        &apos;txt&apos;, &apos;vbs&apos;]
        }

    };
&lt;/code&gt;



&lt;p&gt;The only way I could  quickly solve this problem was to include a blank setting in the iframe list.&lt;/p&gt;


&lt;code&gt;
ext:     {
            img:        [&apos;png&apos;, &apos;jpg&apos;, &apos;jpeg&apos;, &apos;gif&apos;, &apos;bmp&apos;],
            qt:         [&apos;dv&apos;, &apos;mov&apos;, &apos;moov&apos;, &apos;movie&apos;, &apos;mp4&apos;],
            wmp:        [&apos;asf&apos;, &apos;wm&apos;, &apos;wmv&apos;],
            qtwmp:      [&apos;avi&apos;, &apos;mpg&apos;, &apos;mpeg&apos;],
            iframe:     [&apos;asp&apos;, &apos;aspx&apos;, &apos;cgi&apos;, &apos;cfm&apos;, &apos;htm&apos;, &apos;html&apos;, &apos;pl&apos;, &apos;php&apos;,
                        &apos;php3&apos;, &apos;php4&apos;, &apos;php5&apos;, &apos;phtml&apos;, &apos;rb&apos;, &apos;rhtml&apos;, &apos;shtml&apos;,
                        &apos;txt&apos;, &apos;vbs&apos;, &apos;&apos;]
        }
&lt;/code&gt;


&lt;p&gt;Now I know this may not be the best way going forward, and it&apos;s possible that this issues has already been address in a more recent releases of shadowbox.js. For an immediate solution it works for me.&lt;/p&gt;
				
				</description>
				
				
				<category>Mura CMS</category>
				
				<pubDate>Wed, 16 Mar 2011 10:06:00 +0100</pubDate>
				<guid>http://www.cfcoffee.co.uk/index.cfm/2011/3/16/Mura-CMS--Shadowbox-issues</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>Mura FW/1 and ValidateThis Plugin</title>
				<link>http://www.cfcoffee.co.uk/index.cfm/2011/1/31/Mura-FW1-and-ValidateThis-Plugin</link>
				<description>
				
				&lt;p&gt;I had a few hours today which I set aside to learn more about FW/1 and ValidateThis. I wanted to use both of these frameworks within a Mura Plug-in I had created. I have never used ValidateThis, so I wondered how hard it would be to add it into the fw/1 Plug-in. I am not saying below is the best way, it&apos;s my first attempt and I welcome ideas :)&lt;/p&gt;
				 [More]
				</description>
				
				
				<category>FW/1</category>
				
				<category>ColdFusion 9</category>
				
				<category>Mura CMS</category>
				
				<category>ColdFusion</category>
				
				<pubDate>Mon, 31 Jan 2011 16:58:00 +0100</pubDate>
				<guid>http://www.cfcoffee.co.uk/index.cfm/2011/1/31/Mura-FW1-and-ValidateThis-Plugin</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>Mura CMS URL rewriting for Windows IIS7</title>
				<link>http://www.cfcoffee.co.uk/index.cfm/2011/1/23/Mura-CMS-URL-rewriting-for-Windows-IIS7</link>
				<description>
				
				&lt;p&gt;It has been sometime since my post on friendly URL&apos;s in Mura CMS. A lot has changed, it&apos;s now even easier to have friendly URL&apos;s. Best of all it only takes a few seconds.&lt;/p&gt;

&lt;h4&gt;Getting rid of the siteID &amp; index.cfm&lt;/h4&gt;

&lt;p&gt;First open the config/settings.ini.cfm file. We are interested in two settings, siteidinurls and indexfileinurls. Change both of these to 0.&lt;/p&gt;

&lt;code&gt;
siteidinurls=0
indexfileinurls=0
&lt;/code&gt;

&lt;p&gt;Note: If you get rid of siteid and plan to run more than one site on the same instance of Mura, then all you have to do is change your bindings in IIS 7 to match what you have setup for each site in Mura. Doing this means you can have each site on their own domain running from one instance of Mura, cool or what?&lt;/p&gt; 


&lt;p&gt;Now, logon to your Windows Server 2008 and install the rewriting extension found &lt;a href=&quot;http://www.iis.net/download/URLRewrite&quot;&gt;here&lt;/a&gt;. Install either the 32bit or 64bit depending on your OS.&lt;/p&gt;


&lt;p&gt;Once installed, open up your Mura site in the IIS 7 Manager. Then double click on the new URL &quot;rewrite&quot; icon. You will now see on the right hand side under actions, an option called &quot;Select Import Rules&quot;. Click this and enter the following in the rewrite rules box and click apply...&lt;/p&gt;


&lt;code&gt;
RewriteEngine On
RewriteCond %{DOCUMENT_ROOT}%{REQUEST_URI} !-d
RewriteRule ^([a-zA-Z0-9/-]+)$ /index.cfm%{REQUEST_URI} [PT]
&lt;/code&gt;

&lt;p&gt;Lastly restart the website and then Mura. Thats it.&lt;/p&gt;
				
				</description>
				
				
				<category>Mura CMS</category>
				
				<category>ColdFusion</category>
				
				<pubDate>Sun, 23 Jan 2011 23:05:00 +0100</pubDate>
				<guid>http://www.cfcoffee.co.uk/index.cfm/2011/1/23/Mura-CMS-URL-rewriting-for-Windows-IIS7</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>Add an iPhone icon</title>
				<link>http://www.cfcoffee.co.uk/index.cfm/2011/1/9/Add-an-iPhone-icon</link>
				<description>
				
				&lt;p&gt;Just a quick one today. I was working on a mobile site using the really cool JQuery Mobile framework. When I finished, I noticed that the iPhone &apos;add to desktop&apos; option was using a snap shot of the page for the desktop icon. A quick search and I found you could customize this icon, just by adding one link.&lt;/p&gt;

&lt;p&gt;1) First, just create your icon 57x57 and save it as PNG file and called it &quot;apple-touch-icon.png&quot;. &lt;/p&gt;
&lt;p&gt;2) Then just add the following line to your head. Match the href to your image directory.&lt;/p&gt;
&lt;code&gt;&lt;link rel=&quot;apple-touch-icon&quot; href=&quot;iphone_icon.png&quot;/&gt;&lt;/code&gt;
				
				</description>
				
				
				<category>Web Design 101</category>
				
				<pubDate>Sun, 09 Jan 2011 13:22:00 +0100</pubDate>
				<guid>http://www.cfcoffee.co.uk/index.cfm/2011/1/9/Add-an-iPhone-icon</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>You Can Shape Slatwall: Full Ecommerce Plug-in for Mura</title>
				<link>http://www.cfcoffee.co.uk/index.cfm/2010/12/18/You-Can-Shape-Slatwall-Full-Ecommerce-Plugin-for-Mura</link>
				<description>
				
				&lt;p&gt;FusionSell has had a good response and&#xa0;I have had lots of positive emails. One of the  emails I received was from Greg Moser. Greg &#xa0;has already spent a lot of time creating a ecommerce Plug-in for&#xa0;nytro.com, and is now currently developing a  full ecommerce plug-in for Mura called Slatwall. Both Greg and I listened &#xa0;to the same cfhour podcast and the words of Sean Corfield resonated around both our heads.&lt;/p&gt;
 
 &lt;p&gt;Greg seems very passionate about open source and ColdFusion, we both came to the conclusion not to double work load. Why end up with two OK products when Slatwall could be a single great product.&lt;/p&gt;
				 [More]
				</description>
				
				
				<category>Slatwall</category>
				
				<category>Project Showcases</category>
				
				<category>ColdFusion</category>
				
				<pubDate>Sat, 18 Dec 2010 15:02:00 +0100</pubDate>
				<guid>http://www.cfcoffee.co.uk/index.cfm/2010/12/18/You-Can-Shape-Slatwall-Full-Ecommerce-Plugin-for-Mura</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>ColdFusion Shopping Cart Plug-in, Project Help needed!</title>
				<link>http://www.cfcoffee.co.uk/index.cfm/2010/12/11/ColdFusion-Shopping-Cart-Plugin-Project-Help-needed</link>
				<description>
				
				&lt;p&gt;&lt;strong&gt;This post is in response to alot of emails I am getting regarding FusionSell. I cannot believe just how much need there is for an ecommerce plug-in for Mura. However, I cannot do this alone!&lt;/strong&gt;&lt;/p&gt;

&lt;p&gt;A total of 4 hours and no planning does not always lend it&apos;s self to a long stainable project. However, sometimes, something very small can be the start of something beautiful.&lt;/p&gt; 

&lt;p&gt;&lt;a href=&apos;http://fusionsell.riaforge.org/&apos; target=&quot;_blank&quot;&gt;FusionSell&lt;/a&gt; is by no means beautiful, but after being inspired by &lt;a href=&apos;http://www.cfhour.com/post.cfm/show-81-discussion-with-sean-and-matt&apos; target=&quot;_blank&quot;&gt;episode 81 of CFHour&lt;/a&gt; I can see FusionSell becoming much more with the help of others. &lt;/p&gt; 

&lt;p&gt;In .NET I have lots of options, in ColdFusion not so many. But nothing in CF seems to combine a good CMS with a ecommerce store. Mura CMS has given us the perfect platform to create this package. It&apos;s easy, open and most importantly extendable. &lt;/p&gt; 

&lt;p&gt;FusionSell is my attempt at a plug-in I am hoping can be turned into something more, but I need your help!&lt;/p&gt; 

&lt;p&gt;My mission is to create an open source shopping cart plug-in for Mura CMS that&apos;s easy to use, follows best practice and most importantly free. Free to anyone, for any propose.&lt;/p&gt;
				 [More]
				</description>
				
				
				<category>Mura CMS</category>
				
				<category>ColdFusion</category>
				
				<pubDate>Sat, 11 Dec 2010 15:05:00 +0100</pubDate>
				<guid>http://www.cfcoffee.co.uk/index.cfm/2010/12/11/ColdFusion-Shopping-Cart-Plugin-Project-Help-needed</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>Jobs: ColdFusion Website Developer</title>
				<link>http://www.cfcoffee.co.uk/index.cfm/2010/11/29/Jobs-ColdFusion-Website-Developer</link>
				<description>
				
				&lt;p class=&apos;MsoNormal&apos;&gt;&lt;b&gt;Posted November 2010&lt;br /&gt;&lt;br /&gt;Location:&lt;/b&gt; Manchester, UK&lt;br /&gt;

&lt;b&gt;Salary:&lt;/b&gt; Will depend on experience &lt;br /&gt;

&lt;b&gt;Job type:&lt;/b&gt; Initial 6 month rolling contract with the possibility to turn permanent.&lt;br /&gt;

&lt;b&gt;Start Date:&lt;/b&gt; Immediate start&lt;br /&gt;



&lt;br /&gt;&lt;/p&gt;&lt;p class=&apos;MsoNormal&apos;&gt;Gencia Media &lt;span style=&apos;&apos;&gt;&amp;nbsp;&lt;/span&gt;is
looking for a Web Developer with in-depth knowledge of ColdFusion.&lt;span style=&apos;&apos;&gt;&lt;/span&gt;&lt;/p&gt;
				 [More]
				</description>
				
				
				<category>Jobs</category>
				
				<pubDate>Mon, 29 Nov 2010 16:40:00 +0100</pubDate>
				<guid>http://www.cfcoffee.co.uk/index.cfm/2010/11/29/Jobs-ColdFusion-Website-Developer</guid>
				
				
			</item>
			
		 	
			
			
			<item>
				<title>Job: Lead Air/Flex/Flash Developer Manchester UK</title>
				<link>http://www.cfcoffee.co.uk/index.cfm/2010/11/29/Job-Lead-AirFlexFlash-Developer-Manchester</link>
				<description>
				
				&lt;b&gt;Posted November 2010&lt;br /&gt;&lt;br /&gt;Location:&lt;/b&gt; Manchester, UK&lt;br /&gt;&lt;b&gt;Salary:&lt;/b&gt; Will depend on experience &lt;br /&gt;&lt;b&gt;Job type:&lt;/b&gt; Initial 3 month rolling contract with the possibility to turn permanent.&lt;br /&gt;&lt;b&gt;Start Date:&lt;/b&gt; Immediate start&lt;br /&gt;&lt;b&gt;&lt;br /&gt;Lead Air/Flex/Flash Developer&lt;/b&gt;&lt;br /&gt;With immediate&amp;nbsp; start:&lt;br /&gt;&lt;br /&gt;Gencia Media is seeking a highly talented developer with strong experience in both Flex and Adobe Air development. The lead will need to have some experience in working with Marker and Markerless augmented reality projects. &lt;br /&gt;&lt;br /&gt;
				 [More]
				</description>
				
				
				<category>Jobs</category>
				
				<pubDate>Mon, 29 Nov 2010 16:35:00 +0100</pubDate>
				<guid>http://www.cfcoffee.co.uk/index.cfm/2010/11/29/Job-Lead-AirFlexFlash-Developer-Manchester</guid>
				
				
			</item>
			
		 	
			</channel></rss>
