Questions tagged [cfml]

CFML is a dynamic general-purpose programming language, especially suited for web and intranet development. There are compatible but independent implementations by Adobe ColdFusion, Lucee, Railo and Open BlueDragon - each with a common CFML core but different advantages/focuses.

CFML (Cold Fusion Markup Language) is a dynamic general-purpose programming language, especially suited for web and intranet development. There are compatible but independent implementations by Adobe ColdFusion, Lucee, Railo and Open BlueDragon - each with a common CFML core but different advantages/focuses.

Most CFML implementations run using a Java servlet engine. ColdFusion versions 6-9 ship with JRun, but from CF10 onwards uses a customised version of Tomcat. Lucee, Open BlueDragon and Railo run on Jetty/Resin/Tomcat, though they can all use any J2EE app server. There is also a BlueDragon.NET which runs on Microsoft's .NET platform instead of Java.

The and tags have been aliased to this tag.

For all questions, remember to indicate which CFML engine version(s) you are running on (such as , , , or ), and any CFML frameworks you might be using.


Free ColdFusion Programming Resources


CFML Frameworks

There are currently two well maintained / active MVC frameworks for CFML, both are convention over configuration based. They are:

All 3 frameworks run on ColdFusion 10+ and Lucee 4.5+.

FW/1 has support for clojure integration, this requires Lucee 4.5. Clojure integration is optional and not required to run CFML code.

Deciding which one to use will depend on your needs and/or coding style.

854 questions
0
votes
1 answer

Error: < marks the beginning of a ColdFusion tag. Did you mean LT or LTE?

I am getting the following error. The website is currently running on ColdFusion 10 server. It used to be running ColdFusion 6. Is this issue caused by the upgrade of ColdFusion versions? < marks the beginning of a ColdFusion tag. Did you mean LT…
swetha
  • 132
  • 5
0
votes
1 answer

Copy files in folders using ColdFusion (openBD Engine)

I have been asked to solve the following problem: copy files in batch of 3 in newly created folders. Example: in folder let’s say “D:/TEST_CF/” there are 20 txt files. Divide them by 3 (the batch-give us 6 remainder 2), create 7 folders (in order…
user734094
0
votes
1 answer

CFML decrypt string from database on the fly

I have the following script that tries to select some items from my database and decrypt the encrypted ones, the problem is the encryption key is made unique with a changing company_id I have in my table: Product 1 (sub) -->Product 2 (sub) -->Product 3 (sub) I need to set it up so that…
Jason
  • 1,957
  • 2
  • 20
  • 34
0
votes
1 answer

Webpage Won't Update on IIS7

I have a website and the static content on the page won't update no matter what I try to do. On the server the page is updated, but viewing it in the browser, you still see the same old page. I have administrator rights on the server (IIS 7) and…
Robert
  • 1,638
  • 7
  • 34
  • 45
0
votes
1 answer

Hide table row where radio button is selected after form submit

I have table that is contained in form. The table is built from a CF loop where I have assigned each row ID the NumberID in the sql table. I have a submit button that performs an jquery ajax submit. I need to hide the row that was submitted…
jwimmer
  • 209
  • 1
  • 12