ColdFusion is a server-side rapid application development platform, from Adobe. The latest version, ColdFusion 10, was released in May 2012. ColdFusion can also refer to ColdFusion Markup Language (CFML), the dynamic programming language which Adobe ColdFusion ("CF") implements, also used by a ...

learn more… | top users | synonyms (3)

22
votes
16answers
9k views

ColdFusion vs PHP [closed]

Can anyone share with me (without fervent evangelism, please) any comparative experiences you might have with regard to ColdFusion and PHP in developing internal enterprise browser-based applications? ...
10
votes
1answer
1k views

How to handle timezones in CFML?

How to handle timezones in CFML? So far all apps I've wrote just use the default timezone of the CF server and/or SQL server. What do you guys usually do? Do you store all dates in GMT with ...
8
votes
3answers
1k views

How do you organize your small reusable cffunctions?

I am reorganizing my ColdFusion directory structures and am curious about how experienced CF developers are organizing libraries of smaller cffunctions. I am not as curious about elaborate components ...
8
votes
1answer
292 views

Does IsValid() protect from XSS?

Does using IsValid() to validate an email address or a URL format protect from XSS? Does it negate XSS when other formats are specified?
11
votes
2answers
787 views

Serious, intermittent problem with CF Web Service

Howdy, CFers! We've got an incredibly frustrating situation with a CF Web Services-based API that we wrote and maintain. We had an API in place for years that was stable and working happily with Ruby, ...
0
votes
1answer
229 views

Parse CFML tags in PHP

Background: I have been running a site on the blogger platform for the past 5 years. I was using the option of hosting the site on my own server, publishing via FTP. My server is running ...
3
votes
3answers
788 views

ColdFusion, HowTo Convert a String to an Array?

Given the following string in ColdFusion: ul[0][id]=main1 &ul[0][children][0][id]=child2 &ul[0][children][0][class]= &ul[1][id]=main3 &ul[2][id]=main4 &ul[3][id]=main5 How can ...
3
votes
1answer
4k views

Adding a dynamic image to a PDF using ColdFusion and iText

I pieced together some code to insert a dynamic image into a PDF using both ColdFusion and iText, while filling in some form fields as well. After I got it working and blogged about it, I couldn't ...
1
vote
2answers
88 views

ColdFusion equivalent to PHP hash_hmac

$key = "12345678876543211234567887654321"; $iv = "1234567887654321"; $plaindata = "This is a test string"; $enc = base64_encode(mcrypt_encrypt(MCRYPT_RIJNDAEL_128, $key, $plaindata, MCRYPT_MODE_CBC, ...
0
votes
4answers
218 views

SQL and Coldfusion left join tables getting duplicate results as a list in one column

lets say I have two tables: Persons (P_Id, Name) and Orders (O_Id, OrderNo, P_Id)... I want to do a left join which would be: SELECT Persons.Name, Orders.OrderNo FROM Persons LEFT JOIN Orders ON ...
15
votes
4answers
3k views

Things to watch out for in ColdFusion 9 with CF-ORM

What are some of the things you've observed in ColdFusion 9 with CF-ORM (Hibernate) that one should watch out for?
10
votes
3answers
2k views

Extending application.cfc in a subdirectory

I have the following two files and would like the second to extend the first: wwwroot\site\application.cfc wwwroot\site\dir\application.cfc However, when I go to declare the component for the ...
6
votes
3answers
7k views

How do I convert images between CMYK and RGB in ColdFusion (Java)?

I have a need to convert images from CMYK to RGB - not necessarily back again, but hey, if it can be done... With the release of ColdFusion 8, we got the CFImage tag, but it doesn't support this ...
11
votes
6answers
3k views

ColdFusion mail queue stops processing

Our CF server occasionally stops processing mail. This is problematic, as many of our clients depend on it. We found suggestions online that mention zero-byte files in the undeliverable folder, so ...
3
votes
1answer
1k views

Un-encrypting / re-encrypting a ColdFusion encrypted string in PHP

I'm in the unenviable position where I have to maintain functionality with an existing ColdFusion application. As part of it's login process the Coldfusion app stores a cookie with an encrypted ...
2
votes
2answers
584 views

How to get around SerializeJSON in CF8 encoding non printable characters?

SerializeJSON creates JSON with non printable characters (i.e. ASCII 21) This is invalid JSON. How can I get round this. Would a regex removing the non printable characters work? What regex would ...
1
vote
2answers
332 views

many queries in a task to generate json

So I've got a task to build which is going to archive a ton of data in our DB into JSON. To give you a better idea of what is happening; X has 100s of Ys, and Y has 100s of Zs and so on. I'm creating ...
12
votes
17answers
3k views

Is ColdFusion a good choice for web development? [closed]

I've looked into the benefits of PHP, ASP.NET, Python, Rails, etc. These technologies seem very popular among folks here, but I don't see too many ColdFusion questions. Is ColdFusion a good solution ...
8
votes
2answers
740 views

Memory Leak Looping cfmodule inside cffunction

Googlers if you've got a heap dump with a root of coldfusion.runtime.CFDummyComponent read on. Update 2/22/2011 Marc Esher of MXUnit fame found the exact same bug in a different context. His ...
5
votes
7answers
13k views

How to suppress the file corrupt warning at Excel download?

I have a web page which links to an Excel 2007 worksheet. It is a .xls file and not .xlsx file. When I click on the link I get the usual dialog box to either open/save the Excel file. On clicking ...
2
votes
3answers
213 views

How can I ensure that my Excel cell will be treated as a string?

I am using Coldfusion to create a basic Excel spreadsheet. I build a table, and then convert it to Excel using the following code: <cfset fileName = "myFile.xls"> <CFHEADER ...
7
votes
2answers
481 views

How do I generate an OpenOffice Draw document?

I want to create a flowchart in OpenOffice Draw. Since there's a lot of steps to show (and may change in future) but I can extract the data, I want to automate the creation with the following steps: ...
5
votes
4answers
1k views

Anyone have issues going from ColdFusion's serializeJSON method to PHP's json_decode?

The Interwebs are no help on this one. We're encoding data in ColdFusion using serializeJSON and trying to decode it in PHP using json_decode. Most of the time, this is working fine, but in some ...
4
votes
2answers
715 views

How to format spreadsheet columns using ColdFusion?

I am using SpreadsheetFormatColumns() to format the columns in a spreadsheet to "text", but I don't know how to do this, all the formats in the livedocs are for numbers, currency or dates... is there ...
3
votes
1answer
141 views

IE8 Post Body Becomes Empty after form submission

Okay here is our setup: Simple form being submitted via AJAX using Prototype 1.7 to a Apache server captured by ColdFusion. (We have noticed similar bugs on pages that submit form data in the ...
3
votes
3answers
518 views

What's the best way to remove HTML from a string?

I recently started using the following RegEx in a ReReplace() function to strip HTML tags from a string using ColdFusion. Please note: I am not using this as protection from XSS or SQL injection; this ...
2
votes
2answers
40 views

decrypt encrypted string from coldfusion using c#

I'm using encrypt(string,key) and decrypt(string,key) for encryption in ColdFusion. Now what I would like to do is to encrypt in ColdFusion, but decrypt in asp.net C#. Can someone show me how to do ...
2
votes
3answers
864 views

How do I force a Coldfusion cfc to output numeric data over JSON as a string?

I'm calling a Coldfusion component (cfc) using jQuery.post(). I need an integer or string representation of the number returned for use in a URL. {"PAGE":"My Page Title","ID":19382} or {"PAGE":"My ...
2
votes
3answers
2k views

ColdFusion IDE? Visual Studio Plugin?

I just took a web contract to fix up an existing site written in ColdFusion. I haven't had a chance to peak at the code yet, but the site itself is riddled with problems. Anyway, I've never used ...
1
vote
1answer
87 views

PHP ColdFusion9 AES Encryption - Different results

AES Encryption in PHP and ColdFusion9 is producing different results. Could somebody please help me? The below PHP Code $key = "12345678123456781234567812345678"; $iv = "1234567812345678"; $data = ...
1
vote
2answers
2k views

Google Maps infoWindow only loading last record on markers

I'm trying to load a google map with dynamic markers and dynamic infoWindows to go with them. Basically I've got the markers working. The infoWindows are clickable and closable, however they do not ...
0
votes
3answers
104 views

How do you output a query from a .cfm page using jquery ajax with json format

I am trying to output a query from a .cfm page using jquery with json format. Can someone tell me what I am dong wrong? Edit: Answer here Edit: Just posted my cfc code Edit: I currently am getting ...
0
votes
3answers
124 views

group by cities

As I was advised by a good man and programmer I should simplify my table. So far I have made a new table (x-month,y-cities,value-Nettotal) it works, but still I didn't understand why it can't group ...
8
votes
4answers
857 views

Building a Collaborative filtering / Recommendation System

I'm in the process of designing a website that is built around the concept of recommending various items to users based on their tastes. (i.e. items they've rated, items added to their favorites list, ...
15
votes
10answers
8k views

Wrapping lists into columns

I'm using ColdFusion to populate a template that includes HTML lists (<ul>'s). Most of these aren't that long, but a few have ridiculously long lengths and could really stand to be in 2-3 ...
4
votes
2answers
4k views

$.ajax context option

Episode 11 of the yayQuery podcast mentions the $.ajax context option. How would I use this option in the success callback? What I'm currently doing is passing my input parameters back to the success ...
5
votes
2answers
2k views

Loading city/state from SQL Server to Google Maps?

I'm trying to make a small application that takes a city & state and geocodes that address to a lat/long location. Right now I am utilizing Google Map's API, ColdFusion, and SQL Server. Basically ...
5
votes
6answers
2k views

server-side css selectors

I am creating a tool that will check dynamically generated XHTML and validate it against expected contents. I need to confirm the structure is correct and that specific attributes exist/match. There ...
4
votes
3answers
495 views

Is there a natural language parser for dates/times in ColdFusion?

Is there a natural language parser for date/times in ColdFusion?
6
votes
4answers
2k views

Forcing HttpOnly cookies with JRun/ColdFusion

We need to ensure that all cookies on a CF7 site are set as HttpOnly. We are using jsessionid to control our sessions, and JRun does not create this as HttpOnly. Whilst it is possible to modify an ...
3
votes
2answers
301 views

Intelligent date range parsing of human input?

Has anyone come across a script / cl app written in any language that handles the parsing of human-entered dates well? I'd love to be able to parse, for example: "3 to 4 weeks" "2 - 3 days" "3 weeks ...
14
votes
1answer
744 views

Sorting on Column in Type Table with ColdFusion ORM

I have three tables, with the following structure: http://dl.dropbox.com/u/2586403/ORMIssues/TableLayout.png The three objects I'm dealing with are here: ...
6
votes
4answers
3k views

ColdFusion adding extra quotes when constructing database queries in strings

I am coding in ColdFusion, but trying to stay in cfscript, so I have a function that allows me to pass in a query to run it with <cfquery blah > #query# </cfquery> Somehow though, when I ...
5
votes
7answers
1k views

Is there a way to 'listen' for a database event and update a page in real time?

I'm looking for a way to create a simple HTML table that can be updated in real-time upon a database change event; specifically a new record added. In other words, think of it like an executive ...
5
votes
5answers
847 views

Looping over a large XML file

I'm having problems looping over an XML file about 20-30 MB (650000 rows). This is my meta-code: <cffile action="READ" ile="file.xml" variable="usersRaw"> <cfset usersXML = ...
5
votes
6answers
2k views

Why don't people use <CFLOGIN>?

Why don't people use CFLOGIN? I remember having problem with it with CF7 some months ago, but I couldn't remember what was wrong with it.
4
votes
7answers
834 views

Why does this subtraction not equal zero?

I happened upon these values in my ColdFusion code but the Google calculator seems to have the same "bug" where the difference is non-zero. 416582.2850 - 411476.8100 - 5105.475 = -2.36468622461E-011 ...
4
votes
5answers
3k views

Invoke ColdFusion function using AJAX

I need to invoke a ColdFusion function(present in a .cfm file) when the user clicks on a link. And I would like to do it using jQuery. I have a jQuery snippet which looks like- <script ...
3
votes
1answer
446 views

Decrypting a string in ColdFusion encrypted with 3DES in C#

We are having difficulty decrypting a string in ColdFusion that was previously encrypted with 3DES and C#. Here is the code we used to encrypt the string initially: public static string ...
3
votes
6answers
184 views

How I can encode/escape a varchar to be more secure without using cfqueryparam?

How I can encode/escape a varchar to be more secure without using cfqueryparam? I want to implement the same behaviour without using <cfqueryparam> to get around "Too many parameters were ...

1 2 3 4 5 12