Welcome to csimmons.net. With all the interesting content the internet has to offer I'm pleased that you've visited. csimmons.net, LLC is me, an Atlanta based ColdFusion web solutions guy serving government, small companies and non profit organizations.
Atom support for Emmet in ColdFusion .cfm and .cfc files Tue, 17 May 2016 15:17:27 +0000
I’m late to the party, but I’m trying out a new editor: GitHub’s Atom. My mission when I try out a new editor is to see if I can get the following 3 items set up properly (because if I can’t the editor is unfortunately not going to work for me). Language Support for ColdFusion ... Read moreAtom support for Emmet in ColdFusion .cfm and .cfc files
Processing ColdFusion using .htm and .html files with Lucee Thu, 12 Feb 2015 04:46:42 +0000
If you want Lucee to use the .htm and .html file extensions instead of (or in addition to) .cfm and .cfml you can set this up in 3 quick steps. 1. Stop Lucee 2. Edit the web.xml file located at <Lucee Install Dir>/conf/web.xml From: <servlet-mapping> <servlet-name>CFMLServlet</servlet-name> <url-pattern>*.cfc</url-pattern> <url-pattern>*.cfm</url-pattern> <url-pattern>*.cfml</url-pattern> <url-pattern>/index.cfc/*</url-pattern> <url-pattern>/index.cfm/*</url-pattern> <url-pattern>/index.cfml/*</url-pattern> </servlet-mapping> To: <servlet-mapping> ... Read moreProcessing ColdFusion using .htm and .html files with Lucee
Connecting ColdFusion 10 to FoxPro 9 Tue, 14 Oct 2014 13:37:40 +0000
My company has a legacy application built in FoxPro 9 which contains a table that I need to extract data from on a recurring basis. I have never worked with FoxPro. Apparently in FoxPro each table has a corresponding .dbf file. For this example we will say that the table file is persons.dbf, which resides ... Read moreConnecting ColdFusion 10 to FoxPro 9