Tagged Questions

ColdFusion is a server-side rapid application development platform, from Adobe. ColdFusion can also refer to CFML, the dynamic programming language which Adobe ColdFusion ("CF") implements, also used by a number of alternative CFML engines - notably Open BlueDragon and Railo.

learn more… | top users | synonyms

17
votes
10answers
3k views

Picking a ColdFusion MVC Framework

I am taking over a lot of the ColdFusion stuff that is lingering at our shop and they are insistent it stay on ColdFusion and that new projects in this area MUST be done in CF - basically this part is ...
7
votes
6answers
202 views

MVC: I need to understand the Model

I've been working with the MVC pattern for a while now, but I honestly don't feel like I truly understand how to work with and apply the "Model" ... I mean, one could easily get away with using only ...
7
votes
1answer
1k views

How to get list of scheduled tasks and last run results in ColdFusion?

We're trying to build a dashboard for our chron jobs -- CF, Java, SQLServer, etc. so that we can see when things were run last, what the result was, and when they're scheduled to run next. Is there a ...
7
votes
4answers
1k views

When should I use Scope Locking (Application, Server, etc…) vs named locking in ColdFusion?

When is it appropriate to use <cflock scope="application"> or it's ilk as opposed to <cflock name="foo">? Specifically, I'm interested in using CFLock to protect shared objects in the ...
6
votes
2answers
1k views

Creating QR Code with Coldfusion

Has anyone gotten the "Open Source QR Code Library" to work with ColdFusion? I need to generate QR Codes in ColdFusion. I also found this tutorial on how to generate it using Zxing. But the tutorial ...
6
votes
4answers
2k views

How can I clean HTML tags out of a ColdFusion string?

I am looking for a quick way to parse HTML tags out of a ColdFusion string. We are pulling in an RSS feed that that could potentially have anything in it. We are then doing some manipulation of the ...
5
votes
3answers
399 views

How can I run a ColdFusion scheduled task at an interval <60 seconds?

I have a CFC method that I would like to run at an interval of 30 seconds. However, the problem is ColdFusion won't let me schedule a task that runs at an interval of 60 seconds or lower. Does anyone ...
5
votes
2answers
350 views

How to embed an image in a PDF using cfpdfform

I'm dynamically generating a PDF with a few variables but also need to be able to embed an image on the PDF. Anyone have any experience doing this using ?
4
votes
1answer
85 views

PHP mcrypt to ColdFusion decrypt

I am working in a PHP app we have a particular string that we need to encrypt before storing in a database. I can do this in PHP with not problem using mcrypt with a key and a iv. Currently I'm trying ...
4
votes
2answers
76 views

Can I make an unbuffered query in ColdFusion?

I'm in the process of porting a Java desktop application to a ColdFusion web app. This desktop app made queries with very large result sets (thousands of text records) that, while being all right on ...
4
votes
3answers
237 views

How can I determine if a file upload is a valid CSV file - or at least text - in ColdFusion 8?

I have a form which allows a user to upload a file to the server. How can I validate that the uploaded file is in fact the expected format (CSV, or at least validate that it is a text file) in ...
4
votes
2answers
1k views

Downloading large file in ColdFusion using CFHTTP

I'm trying to download a large (600MB) binary file to the server using CFHTTP on Coldfusion 8: <cfhttp method="get" url="#fileURL#" path="#filePath#" file="#fileName#" timeout="600" ...
4
votes
3answers
644 views

How do you make an added row from QueryAddRow() the first row of the result from a query?

I am outputting a query but need to specify the first row of the result. I am adding the row with QueryAddRow() and setting the values with QuerySetCell(). I can create the row fine, I can add the ...
4
votes
1answer
360 views

Coldfusion not converting accented text or MS Word chars

Running Coldfusion 8, I am trying to clean text input before saving to a database that will take things like the MS equivalent of ' " - and accented letters, and converting them. I have tried ...
4
votes
1answer
203 views

cffeed causing errors

Our web admins applied some hotfixes (don't know which ones) over the weekend and it seems to have killed <cffeed>. The error we get is below. We have the <cffeed> tag inside of a ...
4
votes
1answer
907 views

In ColdFusion 8, can you declare a function as private using cfscript?

Normally you create a function using cfscript like: <cfscript> function foo() { return "bar"; } </cfscript> Is there a way to declare this as a private function, available only to ...
3
votes
1answer
254 views

AES encrypt in ColdFusion, decrypt in ruby

We can't for the life of us figure this out. We need to make ColdFusion encrypt data which ruby will decrypt. We've tried so many different settings on the ColdFusion side, looked through SO posts, ...
3
votes
2answers
283 views

Am I using J2EE or ColdFusion session variables?

Is there anyway in your code to specify using J2EE session management instead of ColdFusion session management or is it controlled completely through the ColdFusion administrator? Also, what problems ...
3
votes
4answers
219 views

Check for live Data Source Name Before proceeding

Would it be ok to get a CF app to check for a valid database before proceeding to process that request? This is because there may be instances where the database server may be down or being upgraded, ...
3
votes
3answers
1k views

ColdFusion export to Excel

I'm have a hard time getting the account number to display correctly when exporting data from database to an Excel spreadsheet. Please see the attached image. Under Company Name column "Company ...
3
votes
2answers
271 views

ColdFusion debugging problem in Eclipse (Break points not hit)

I am trying to get the debugger (CF extension for Eclipse) working for last few hours. And struck in strange situation. My settings are listed below ColdFusion 8 Eclipse 3.4 I set up the RDS ...
3
votes
1answer
724 views

ColdFusion 8 scheduler not rescheduling task

I have just done a clean install of CF8 on a Windows 2000 machine. I have a scheduled task I need to run every 15 minutes on this machine, and the machine does little else. The task is set up as ...
3
votes
3answers
628 views

MySQL / ColdFusion 8 : sql-mode

We've been doing some testing with ColdFusion and MySQL and are a bit puzzled. We know that there are different 'sql-mode' flags you can set in the /etc/my.cnf file which will cause MySQL to behave ...
2
votes
1answer
46 views

How can I get ColdFusion to scale images of any type?

Server Config: Windows Server 2003 IIS 6 ColdFusion 8 Standard Edition Java Version 6 Update 18 I have a ColdFusion application that allows users to upload images that will be added to an existing ...
2
votes
1answer
41 views

How can I scale an image with ColdFusion without losing resolution?

Server Config: Windows Server 2003 IIS 6 ColdFusion 8 Standard Edition Java Version 6 Update 18 I have a ColdFusion application that allows users to upload images that will be added to an existing ...
2
votes
2answers
49 views

Coldfusion: Pass json from a CFM to another CFM?

Basically I am calling from a CFM another CFM which creates an object, calls serveral mehtods on this object and logs a user in; otherwise it prints an error on the screen. Rather then printing the ...
2
votes
1answer
64 views

Comparing Coldfusion and PHP timestamp in milliseconds

I'm creating a timestamp in CF8 using a custom function. It's then being passed via query string to PHP and compared, again, to the current timestamp (using time()). Since CF8 doesn't have a ...
2
votes
2answers
134 views

Get username/account name from email address

Client table contains first name, last name, email, and department. I need to compare the username portion of the email address (that is, everything before @) to the session's username to verify ...
2
votes
3answers
113 views

Conditional statement in CFSet

I can't remember what it is called, but I need to do a sort of conditional statement inside of a CFSet statement. What I mean is something like the following siteSettings = { mailserversmtpport ...
2
votes
2answers
161 views

what is the best way to test if a struct exists before inserting it in an array?

This is about coldfusion... I have an array of structs in which I would like to get only dictinct values. What is the best way to test if a structure already exists in my array before inserting this ...
2
votes
1answer
224 views

ColdFusion: Multiple SQL statements in a query?

Apparently ColdFusion doesn't like multiple SQL statements within a single query... so what once was this: SET @sender_user_id = 3, @recipient_user_id = 5; INSERT INTO messages (message_type, ...
2
votes
2answers
187 views

Can a cfargument be of type “list”?

I want to have an argument like this: <cfargument name="exclude" type="list" required="false" default="-1" hint="A list of source IDs that should be excluded" > I don't see it ...
2
votes
1answer
627 views

Cannot run program “p4”: CreateProcess error=2, The system cannot find the file specified

I'm developing automate deployment script for Coldfusion project. Tool: cruisecontrol.net, ant script Source control: perforce Executing the following ant script from cruisecontrol.net i'm getting ...
2
votes
2answers
185 views

Coldfusion Redirecting a page with statuscode 410

my web site generate the links dynamically and after some period of time the links will be expired and will be no more valid. I redirect such links to a static page with a statuscode 301 which for ...
2
votes
4answers
284 views

generating thumbnails using CF8 cfimage tag - large filesize caused by image metadata

i'm building a small web app that will resize images to different pixel dimensions after they have been uploaded. I am attempting to create 150px X 100px thumbnail from a 3mb jpg image, but am unable ...
2
votes
2answers
474 views

Is there an equivalent to PHP's htmlentities in ColdFusion?

My ColdFusion app is required to create Word 2003 documents, with complex data like images (only a small text portion needs to be dynamic, though). To let this happen, I've saved a Word document that ...
2
votes
1answer
45 views

Grouping Custom Attributes in a Query

I have an application that allows for "contacts" to be made completely customized. My method of doing that is letting the administrator setup all of the fields allowed for the contact. My database ...
2
votes
3answers
182 views

Coldfusion cookie issue

I'm having issues deleting client cookies with the cfcookie tag, I'm setting the value to "" AND changing the expiration date to now. But I think it's resetting the cookie in the same page that it ...
2
votes
2answers
162 views

Cache <cfstoredproc> results

Is there any way to cache the results of a <cfstoredproc> tag? The <cfquery> tag makes it easy with the cachedwithin attribute but there doesn't seem to be anything for ...
2
votes
5answers
1k views

Coldfusion 8: IsDefined('URL.variable') and is not “”?

I'm trying to find out if a url variable exists, and if it doesn't, make sure that it's not empty. This does not work: <cfif IsDefined('URL.affiliateId') and is not ""> // </cfif>
2
votes
1answer
338 views

How can I put names into title case in JavaScript?

I've been looking around on how to use JavaScript to set names to proper case, e.g. george mchall would become George McHall. I was able to find a write up on Codeproject on how to do this, as well as ...
2
votes
2answers
456 views

ColdFusion - Creating column names dynamically with CFLOOP

I have a table that records the name of uploaded documents, up to 14 per record. The columns are named thus: TABLE tblDocuments COLUMNS documentID (int, not null, pk) document1 ...
2
votes
1answer
175 views

ColdFusion 8 Diffie-Helman Encryption

I am integrating with a 3rd party that requires I use the Diffie-Hellman encryption algorithm. The CF docs indicate that this is a supported algorithm. When I attempt to call Encrypt() with either ...
2
votes
3answers
786 views

Error with Decrypt for “Could not perform unpadding: invalid pad byte..”

Using CF8 and MySQL 5.1, I am trying to encrypt() a password upon creation and then decrypt() at login. I can get the decrypt() to work fine on a test page but when I put it in a cfincluded page with ...
2
votes
3answers
395 views

View cfhttp request

I would like to view the actual http request that gets sent via my cfhttp tag. What is the best tool to capture this? Specially, I want to see exactly what headers and content are being sent.
2
votes
0answers
93 views

LiveCycle 2.6.1 Data Management with The ColdFusion 8.0 DataManagement Event Gateway Issue

I've recently been developing a project that involves sending out events from ColdFusion to LiveCycle 2.6.1 using the Data Management event gateway to Flex 4.0 clients (LiveCycle and ColdFusion are on ...
2
votes
1answer
248 views

How does ColdFusion serialize variables returned from web service calls?

I would like to know how ColdFusion serializes variables returned from web service calls so that I can figure out how large (in bytes) they are. I am having issues where when a few of my web requests ...
2
votes
1answer
227 views

Adding a text watermark

I've learned how to add a watermark to a pdf. <cfpdf action="addwatermark" image="NoteToSelf.png" pages="1" position="0,0" showOnPrint="no" source="my.pdf" ...
2
votes
1answer
385 views

Coldfusion 8: Array of structs to struct of structs

I've got an array items[] Each item in items[] is a struct. item has keys id, date, value (i.e., item.id, item.date, item.value) I want to use StructSort to sort the item collection by a date Is ...
2
votes
4answers
581 views

Insert a Coldfusion struct into a database

If I wanted to save a contact form submission to the database, how can I insert the form scope in as the submission? It's been some time since I used Coldfusion. The contact forms vary depending on ...

1 2 3 4 5