Implementing Railo Effectively As A Developer
By: Raymond Camden
So I think everyone knows that if you redesign a web site, you can potentially end up with renamed files and the like which means old URLs will no longer work.
There are multiple ways you can handle this. You can use a URL Rewriter. A 404 handler. Etc.
Well what happens when you update a Model-Glue (or Fusebox, etc) site?
If you are like me, you probably have a total and complete brain fart and completely forget.
Personally I brain Model-Glue and it's usage of one main index.cfm.
This past Sunday I helped launch the second version of University Notes.
This is a site I built with some friends of mine in college.
It has been pretty successful and version 2 was a major update. In that update I changed almost each and every single event name, typically from XXX to page.XXX.
So what happened the day after we launched? I got a whole heck of a lot of error messages about missing events.
I covered how to handle these events in the past. (See this blog entry.)
I bring it up since I thought I'd show how I fixed it. Instead of catching the unknown event error, I created a mapping in my Application.cfm file. Here is a snippet:
<cfif structKeyExists(url,"event")>
<cfif url.event is "dologinregister">
<cfset url.event = "page.logon">
<cfelseif url.event is "home">
<cfset url.event = "page.index">
<cfelseif url.event is "viewprofile">
<cfset url.event = "page.profile">
<cfelseif url.event is "registerform">
<cfset url.event = "page.register">
...
I'm sure I'm not the only person to make such a mistake, so keep it in mind if you work to update a large frameworks based site.
p.s. Not that it's related, but the site also makes heavy use of Spry. Check out the Courses/Ratings/Content tags.
Comments
About The Author
Raymond Camden, ray@camdenfamily.comhttp://ray.camdenfamily.com
Raymond Camden is Vice President of Technology for roundpeg, Inc. A long time ColdFusion user, Raymond has worked on numerous ColdFusion books and is the creator of many of the most popular ColdFusion community web sites. He is an Adobe Community Expert, user group manager, and the proud father of three little bundles of joy.


