ColdFusion is a server-side rapid application development platform, implementing the dynamic general purpose CFML programming language.

learn more… | top users | synonyms

-2
votes
1answer
17 views

How can I show the column names in my JSON file format? (Through ColdFusion)

Through the following ColdFusion .cfm file, I am able to get a .json string, which shows me the requested data: json1.cfm <cfsetting showdebugoutput="no"> <cfheader name="Content-Type" ...
1
vote
0answers
58 views

How can I get this kind of JSON file format from a SQL query? [closed]

You see, this is my issue: I need to get a .json file from a SQL query. In order to do that, I use the following ColdFusion .cfm file: <cfsetting showdebugoutput="no"> <cfheader ...
0
votes
1answer
37 views

Migration to ColdFusion 9 - Element is Undefined Error

I am hoping I can get an answer to this. We recently migrated a ColdFusion site to a new server, which has ColdFusion 9. The older server had 7 on it, maybe 8. Everything was working find on the old ...
1
vote
2answers
48 views

How do I Login to Asp.Net webapp from separate ColdFusion webapp?

I have two web applications, of different technologies, one is developed in ColdFusion and the other in Asp.Net. Both applications have authentication implemented. The usernames for both applications ...
0
votes
1answer
69 views

Populating a second dropdown using ColdFusion, jQuery, and Ajax

I have one dropdown that has 14 values. Depending on the value chosen, it'll query a SQL Server database and return some clients to display in a second dropdown. I want that 2nd dropdown to use the ...
2
votes
3answers
70 views

Coldfusion: Is setting a default or using isdefined faster for arguments?

Is it faster to test for existence isdefined("arguments.argument") or set a default value for arguments.argument?
0
votes
1answer
29 views

cfoutput grouped query - seeing the result

I'd like to have a look at the query that would be inside this: <cfoutput query="myQuery" group="ID"> <cfdump var="#theResultingRows#" /> </cfoutput> Is there a way of getting ...
0
votes
0answers
21 views

Coldfusion SpreadSheetFormatCell fails in one app but not another

I copied an export cfc that creates an Excel file from a query object from another application to this application but for some reason it fails. I have used the exact same cfc in several other ...
0
votes
0answers
29 views

Import ColdFusion Code into Enterprise Architect

My group has a number of ColdFusion Classes (CFC files) which we want to reverse engineer into Enterprise Architect. We currently have code we use to generate ColdFusion code from our UML models in ...
0
votes
0answers
40 views

Loop by number of Columns in CSV upload Coldfusion

I'm customizing a CSV uploader to allow for column mapping. I've got a function that parses it into an Array, then I'm looping through it to generate select boxes with the uploaded file column names ...
4
votes
0answers
37 views

“Range:” http header causes hang in ColdFusion app

Whenever I add the "range" header in a HTTP request for a .cfm or .cfc file on my server, I get a timeout. The server simply does not respond. To debug, I created a blank file called ...
-2
votes
1answer
37 views

Can someone show me how to connect to a H2 database with ColdFusion? [closed]

I'm simply looking for some basic code examples showing me how to connect to a H2 database on the ColdFusion server and perhaps couple of examples of how to execute SQL statements. Thanks.
0
votes
1answer
18 views

Format of ESAPI encode in an output with DecimalFormat

I'm currently working through several forms with outputs to the user and I've successfully applied the #esapiEncoder.encodeForHTML()# without issue thus far but I'm thrown as to whether this is the ...
2
votes
2answers
84 views

Having trouble making hidden/visible error message

I am making a contact form, which includes name, email and a message which can then be submitted. If any of the three fields are null an error message is shown which I have working. The word "error" ...
-1
votes
0answers
53 views

JQuery-Validate stopped working

I recently moved from Windows/MS SQL/Adobe ColdFusion to Centos/MySQL/Railo. When I did, my jQuery-Validate scripts stopped working. There are no error messages, the validation simply does not run. ...
2
votes
2answers
101 views

How do I ensure SerializeJSON keeps trailing/leading zeroes?

EDIT 3 Problem below exists for Coldfusion 9.0, updating to 9.0.1 does indeed fix this I have an application that is using SerializeJSON to encode query results: #SerializeJSON('Ok works fine')# ...
1
vote
2answers
48 views

Use ColdFusion to read events over a TCP/IP stream

Our new phone system is making use of Asterisk manager API which allows to read events and issue commands over a TCP/IP stream. My question is.. Is there any way at all to use ColdFusion to read (and ...
0
votes
1answer
24 views

Using CFContent on IE with SSL

CFContent does not work with IE on a SSL site. I have been looking for a fix but have not found one. As an alternative I was to have the CFContent download the excel sheet to a directory and then use ...
7
votes
1answer
58 views

coldfusion object v10 vs. v9

This piece of code works on CF10, but NOT on CF9. Can anyone give me insight as to why? The CF9 ERROR reads: Invalid CFML construct found on line 2 at column 18. ColdFusion was looking at the ...
0
votes
0answers
85 views

Update table values using 2 tables

I have 2 tables as follows: COMMENT TEXT RECORD_ID_FK SORT_ORDER COMMENT_TEXT ----------------------------------------- 101 1 TEST TEXT 101 1 SOME ...
1
vote
0answers
27 views

ColdFusion 10 Solr cfsearch after cfindex returning results only sometimes

This is my first foray into using cfsearch. I have the below code working on my dev server with ColdFusion 10, and a collection I previously created. The only way I can get this to return consistent ...
0
votes
1answer
60 views

Access function arguments from another function

I am trying to create a custom debug tool and I need to use a component with two separate functions in it. The first function (startTimer) has some arguments such as startCount and the other one ...
0
votes
0answers
49 views

Error setting up Datasource using MySQL (4/5) in ColdFusion Admin

I'm very new to ColdFusion and mySQL but I'm trying to learn. Right now I'm using the learnCFinaweek site to try and get the basics down. I'm running into trouble when I try to add a new data ...
0
votes
0answers
47 views

Cookies being rejected by ColdFusion server after hot fix(s) installed

After installing the latest ColdFusion Hot Fixes, I'm having issues with existing users returning to my website and keeping them authenticated after logging in. For example, a user returns to the ...
0
votes
3answers
50 views

ColdFusion - DateFormat invert the date on refresh page

I have a cfm page with a textbox that has inside a date. The default date is "Now()" and I can edit it. In the same page I have some "combobox" that refresh the page when I change the selection. The ...
-4
votes
0answers
34 views

Searching all links in XML document [closed]

I have an XML Document and I want to search all the absolute links containing .html, .jpg, .png using XPath.
0
votes
3answers
32 views

Unable to access cffile.clientDirectory

I am new to ColdFusion. I am using ColdFusion 10. I am trying to upload multiple image files using cffileupload. I am able to upload files as expected. But I would like to get the metadata before ...
1
vote
1answer
64 views

Find text between key phrases

I have a var that have some text in: <cfsavecontent variable="foo"> element.password_input= <div class="holder"> <label for="$${input_id}" > $${label_text}</label> <input ...
0
votes
2answers
52 views

ColdFusion 9 - Top n random query results

I've got a series of queries that I do to get 5 results at random, the problem is that it is taking a while to get through them, mostly because it involves a loop to assign a rand value that I can ...
1
vote
1answer
63 views

Getting a 404 when trying to use the taffy RESTful API framework on ColdFusion 8/Windows Server 2003/IIS6

I have been tasked with creating an API for our ColdFusion 8 based CMS system. After doing some research I decided that a RESTful API would be the best bet for three reasons: Its down right simple ...
2
votes
3answers
74 views

Creating dynamically named variables

I'm fairly new, as you'll see. I want to create the following variables: V1 = word 1 in my query V2 = word 2 in my query etc... I can do this statically like so: <cfset ...
1
vote
3answers
101 views

coldfusion CRUD, there must be a quick way to do this

We currently use CF8 and don't have access to any ORM functionality. However, I'm hoping someone out there can give me any tips on how to create all my crud actions more quickly than we are doing them ...
3
votes
1answer
77 views

AES Encrypt in CryptoJS and decrypt in Coldfusion

We've got a Silent Login service written in Coldfusion9 that accepts encrypted strings from external systems and then decrypts based on an agreed Algorithm/Encoding setup. This has worked without ...
1
vote
1answer
72 views

Ambiguous column name error : SQL count, join, group by

I have two tables as below, one table has number of available units (stock), I'm trying to return the stock count of each product category, and joining it with secondary table to view the description ...
2
votes
3answers
64 views

XSS code review tool for ColdFusion

Do any tools exists that will scan ColdFusion source code and locate XSS vulnerabilities? Say for example a programmer wrote something like this: <cfoutput> This is a #url.cat#. ...
0
votes
1answer
39 views

Coldfusion cfldap: List all members of a list of AD OU groups

We have a list of OU groups that a subset of our users belong to. Some users belong to multiple OU groups. Is it possible to use cfldap to return all users who belong to one or more of this list of ...
0
votes
2answers
41 views

CF10 new query()

I am creating a query inside a function. Everything works fine until this line: ulist = new query(); Then I get the error: Could not find the ColdFusion component or interface query. Code: ...
1
vote
2answers
58 views

Get column name of a bit column where value is true

I'm trying to create a select query that would return the name of a bit column if value is TRUE or 1. The only way I could do it is if I added an additional column "Day" and had description of the ...
2
votes
1answer
57 views

Website based on REST in ColdFusion

My company is about to redesign a big project from scratch. We are currently thinking about how to implement data providers. I used to integrate some webservices in the last few months and pretty much ...
0
votes
1answer
74 views

Instantiating a new component instance inside a conditional will be undefined

The following code will throw an undefined error, "Variable API is undefined": public string function foo() { var bar = ""; if (somecondition) { var api = new ...
0
votes
2answers
30 views

CreateDate issue in ColdFusion / CFWheels

I am trying to use CreateDate in CFWheels and I am getting stupid errors that I will explain in detail in sec. To start, this is my code <cfscript> lastM = ...
-1
votes
0answers
41 views

Explanation of proper procedure to render remote data to grid

Can someone please explain to me with sample code on how to properly structure my MVC app? What I want to do is have a grid with a paging toolbar. I want the grid to load 10 records per page. I have ...
0
votes
3answers
47 views

Create Datasource in Application.cfc

I would like to set up a datasource in my Application.cfc Can I do it somehow with dbsetup? I would like to name the source, specify server, database, user, password,.... My Administrator doesn't ...
0
votes
2answers
52 views

ColdFusion FTP Explicit TLS

Is it possible to do a ColdFusion FTP connection using Explicit TLS? I have searched on Google but to no avail.
0
votes
4answers
73 views

How to calculate a price from a database column

I am trying to calculate the overall price from a database column called "price". The idea is that users place an order, which is recorded in the orders table. An admin then comes along and can view ...
0
votes
0answers
61 views

extjs 4.1 pagingtoolbar displays correctly but grid loads all records

Okay, so I've been at this all day and can't figure out why the grid is loading all records instead of the pageSize: 25 limit I configured on the store. The paging toolbar is rendering the correct ...
0
votes
0answers
16 views

CFWheels 'request.wheels.execution' struct dump issues

I am running a cfwheels application on Coldfusion 9 and I need to get the native debug variables of cfhweels to store them in a db table. I am trying to get #request.wheels.execution# which returns a ...
0
votes
1answer
32 views

Coldfusion.Ajax.submitForm error

I have a site that uses AJAX almost exclusively to read and post data. While just leaving the page sitting for a while, without clicking around, I'll get the following error: error 12031: ...
2
votes
1answer
62 views

ColdFusion/Java strange script

Just found this weird script on the server of one of my clients. I'm not a CFML pro. Can somebody tell me if is a genuine ColdFusion script or a hacker shell and if so what it does? The name was ...
-4
votes
1answer
63 views

Displaying Details of a Debit and Credit with ColdFusion

My coding is INSERT INTO accouting (acc_Year, acc_Details, acc_Debit, acc_Credit) VALUES ('#Form.year#', '#Form.details#', '#Form.debit#', '#Form.credit#')* The output will be; Debit ...

1 2 3 4 5 117