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
-1
votes
2 answers

How to put ajax array to coldfusion variable?

I'm working on one issue and I need some help. I'm working on HTML code that fills in special machine labels. It is a kind of web page on where people fill in the number of lines and text size, then enter the text of the lines they want the…
-1
votes
3 answers

Use of Valuelist in cfscript is not working

I'm using the iCalUS function from cflib.org which uses cfscript to generate iCal for a calendar. It is possible that an activity has more then one location. The locations are coming from a different table, so I want to use a Valuelist to get a…
Samall
  • 117
  • 9
-1
votes
1 answer

detecting a referer inside getHTTPRequestData and creating mutiple structs

ok, so my first quesion is, i can get headers value of referrer from it, but is it always avaliable even when we have notifications enabled, and secondly i am trying to use a member function to add two structs with keypair values to existing…
Jan
  • 85
  • 7
-1
votes
1 answer

Mimicing the same logic as my sql statement not working with cfscript/cfml?

I am coming to a problem where I am moving from sql query to use of an api. So, I started doing the same thing that my sql statement is doing. But for some reason it is retrieving all the job status and job class and pay grades. However, what my…
user10008857
-1
votes
2 answers

How to mimic sql statement logic in cfml / coldfusion?

I Am coming to a problem where I am trying to convert my sql statement to do the same logic in cfml (cfscript>) so, I am trying to mimic this sql statement to display the results inside my cfscript. can somebody help me solve this issue? thanks for…
Scott
  • 51
  • 8
-1
votes
3 answers

query to cfscript properly in coldfusion?

CLARIFICATION: The question here is, "how do I stop using to retrieve data and replace it with a call to an API?" I have a sql query where I need help to convert it to cfscript. However as you can see I have tried converting it. But, I…
-1
votes
1 answer

How to return in struct with my cfoutput?

I am trying to output certain key values to show(WHICH I AM GETTING ALREADY). But for some reason it is returning as a struct. Basically, I am converting from query statement into api call. But for some reason I cant get it return from cfoutput to…
-1
votes
1 answer

How to translate just contents of a textbox?

I have been searching all over for a way to only translate the contents of a text box.... but I can only find ways to translate the entire website. Below is a sample of the page code of the form we'll be submitting. I would like to just translate…
Scott
  • 459
  • 2
  • 10
-1
votes
2 answers

Beginner Regex problem with whitespace and backtracking

I'm trying to extract data from a PDF which is in the form of table with headings such as name, country, and various numeric fields. I am having problems where the names and countries are of different length. I'm also not sure how to get to the…
pssguy
  • 3,455
  • 7
  • 38
  • 68
-1
votes
1 answer

ColdFusion patch update 14 criticality

What is the criticality of Coldfusion Patch update 14 ? Is it having any major updates like tomcat upgardations as it had in update 12 or it's a normal one?
-1
votes
1 answer

Trying to change the actions of jQuery Validation with in a ColdFusion program

I am new to jQuery validation but have tried a number of things and none work. Issue trying to get an e-mail to validate. This ColdFusion code works great:
  • -1
    votes
    1 answer

    ColdFusion: Updating Multiple Records With One Click

    I have a query that retrieves an ID, comments, and status column from my table. Both the comments and status can be updated by the user on the page. The ID is used to update each record. I have set it up so that a loop will occur based on the query…
    PPJN
    • 332
    • 3
    • 13
    -1
    votes
    1 answer

    cfm websql queries error

    I have this websql script (http://pastebin.com/gvJseBAn) which doesn't perform correctly. If I run the statement select * from news where id=0772348890 , I get the error The conversion of the varchar value ' 0017707787068' overflowed an int…
    martin
    • 11
    • 1
    -1
    votes
    1 answer

    I Need Help Converting a simple Coldfusion Script to Coldfusion Tag

    I need help converting this ColdFusion Script to ColdFusion Tag. public any function default(required rc) { // rc.varName = 'whatever'; }
    -1
    votes
    1 answer

    Build dynamic navigation with list headers (coldfusion & cfscript)

    For a project im building a navigation. The table is like this SELECT TOP 1000 [id] ,[title] ,[action] ,[listOrder] ,[fk_parentId] FROM [portfolio].[dbo].[menu] Where Fk_parentId refers to a id... to build up a menu with…
    r2get
    • 85
    • 1
    • 4
    • 11
    1 2 3
    56
    57