Chris Dawes
Member since Dec 11, 2008
- Profile: /members/901-chris-dawes.htm
- Comments: 6
Recent Blog Comments By Chris Dawes
-
Does The World Know That You Use ColdFusion?
Posted on Aug 17, 2007 at 4:15 AM
It's pretty easy to see what version you are running anyway. You just need to have a look at the web exposed parts of /cfide/ directory and compare it to a known source to find the version someone is running, you can even tell some of the updaters from the code there. It's a simple: X-Powered-By="A... read more »
-
Does The World Know That You Use ColdFusion?
Posted on Aug 16, 2007 at 12:55 AM
or Adobe Coldfusion Standard (v8.0 standalone)... read more »
-
Does The World Know That You Use ColdFusion?
Posted on Aug 16, 2007 at 12:55 AM
We should all use the same string... maybe Adobe can put it in their next updater for 7 and 8 (too late for 6.x) eg: Adobe Coldfusion (v8.0 standalone) Adobe Coldfusion (v6.1 war) What do you think?... read more »
-
Does The World Know That You Use ColdFusion?
Posted on Aug 15, 2007 at 8:41 PM
Go into the http headers tab on the site (or the global site) and change it to Coldfusion... nice and simple :-)... read more »
-
My ColdFusion Weekly Podcast CFQuiz Answer
Posted on Mar 28, 2007 at 9:58 PM
What about: <code> <pre> <cfscript> for (a=1; a lte 100; a=a+1) { writeoutput('<br>#numberformat(a,'000')# '); modMe(a,3,' Coldfusion'); modMe(a,5,' Rocks'); } function modMe(number,modno,message) { if ( arguments.number mod arguments.modno eq 0 ) { writeoutput(arg... read more »
-
Creating A Centralized Point Of Entry For ColdFusion Scheduled Tasks
Posted on Feb 22, 2007 at 3:17 AM
The other downside is that if you don't put try-catch in each item if one fails they all fail. Also if you put a bug in your script, none run.... read more »