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)

0
votes
1answer
32 views

Find same date time each next weeks until a specifc date time

Given a start date time, an end date time and a repeat until date time how do I find the same schedule each week until repeat until date time ? For example: start date time: 05-29-2012 07:35 end ...
0
votes
0answers
44 views

SQL Optimization not making a difference in Coldfusion?

I have spent the last couple days optimizing a very large query that took around 10minutes to run. I have been able to achieve a large increase in performance and have been able to reduce this time ...
2
votes
3answers
57 views

Styling HTML e-mail

When creating an HTML e-mail how do you specify the appearance, for example the font? Is there a better way than using inline CSS? I'm using cfmail to send e-mails.
0
votes
1answer
20 views

Is there a viable alternative to ImageCR3?

I rely on ImageCR3 for a number of my sites. However, I've come up against a variety of limitations with it over the past couple years (single-threaded, no crop anchor, etc) and all of my emails to ...
0
votes
0answers
13 views

ColdFusion: Getting NoClassDefFoundError when referencing a .NET DLL in a cfobject tag

I have a COldFusion 9 instance, and a .NET DLL. The .NET DLL is very simple string parsing to make some of my tasks easier in CF. There is one DLL for each client that wants to do some client-specific ...
3
votes
0answers
27 views

What are the details for using CF_SQL_NVARCHAR in ColdFusion 10?

The ColdFusion 10 documentation on Updating Your Database has a section on Database-related enhancements in ColdFusion 10. That page mentions that there is now support for CF_SQL_NVARCHAR among ...
1
vote
0answers
40 views

Can't get default document to work with ColdFusion & IIS

I've tried everything I can think of and it's definitely configured, but I cant get IIS to work with ColdFusion 10 and default documents. I'm looking for some help or advice as to what to try, I've ...
0
votes
1answer
41 views

Coldfusion - CFMail Error - Creating To: List and BCC: List

For CFMail - I am building a To: list and BCC: list using cfset tolist and cfset bcclist These output just fine. But when I add them into the cfmail - the tolist and bcclist error. I am not sure ...
1
vote
1answer
51 views

How is structClear(session) different than sessionInvalidate()?

This might be a silly question but I'd like to know what exactly is the difference between structClear(session) and the sessionInvalidate() function added in ColdFusion 10?
0
votes
1answer
31 views

cf9 orm entityload in random order

How would I do an entityload with its resultset being in random order? So if I do entityload("modelName"), how Would set it's sort order so that it is randomly different each time I call it? Many ...
0
votes
1answer
23 views

cftextarea controls not showing when loaded with jQuery ajax .get()

I've got a CFTEXTAREA field, which behaves normally when viewed on its own, but when its loaded via jQuery get() method, the controls do not appear. ie The cftextarea is on a product detail pane. ON ...
0
votes
1answer
43 views

Working with dates in Coldfusion

I am storing 2 dates start/end date incremented by weeks, so for example I would have a start date of 05/31/2012 which would end 4weeks later on 06/28/2012. Now, what I need to figure out is which ...
1
vote
1answer
39 views

SHA-512 hashing a byte array in ColdFusion

I am using ColdFusion 9 Referencing Ben Nadel's good works on his blog, I tried ucase(digestUtils.sha512(imageBinary)) For SHA-512 hashing I get that dreaded: The sha512 method was not found. ...
2
votes
1answer
53 views

Euro Currency formatting

I am using LSEuroCurrencyFormat(2500) to format the price. the output is like 2.500,00 € but I want to display the price like 2.500,- € how may I do this?
0
votes
1answer
69 views

SQL Where between word value ranges (eg., “low” to “high”)

I have a field in my database that has 5 possible values: fair, good, very good, ideal, siganture ideal I have a coldfusion form that has 2 drop-downs each with all the values. What I am looking to ...
1
vote
4answers
48 views

ArrayMin on query column with a null value

CF8 I was using this line to get the MIN value of a query column. I just noticed a null value in a recordset causes an error. Is there a simply way to tell ArrayMin to skip nulls w/o having to ...
1
vote
2answers
39 views

ColdFusion: how to populate livecycle pdf section dynamically using query data

I have a template PDF that has a section that will be laid out like a table. The data will come from a query. So this table will be dynamic, number of rows unknown. How do I accomplish this using ...
3
votes
1answer
50 views

How do I find out the next run time for a Scheduled Task?

In ColdFusion 9, is there a quick way to find out the next time that a scheduled task will attempt to run?
0
votes
3answers
48 views

Creating Nested Structs, what will be a better way?

I am trying to create nested Structs something like <cffunction name="setDataAllWithFilter" output="false" access="public"> <cfargument name="stCollection" required="true" type="Struct" ...
1
vote
2answers
42 views

How can I do a jquery post for a file upload form?

I have a form that looks something like this: <form id="uploadForm" name="uploadForm" method="post" enctype="multipart/form-data"> <input type="file" id="uploadFile" name="uploadFile" ...
-6
votes
0answers
55 views

Need help converting query syntax from MySQL into MS SQL server [closed]

These statements were originally written in PHP to build a string formatted for a MYSQL query. I'm now trying to port them over to ColdFusion and MSSQL and was wondering if someone could shed some ...
0
votes
3answers
67 views

Problems with setting up a CFIF

<cfoutput query="allOutcomes" maxrows="10"> <div class="galleryOutcome"> <cfset thisPhoto = uploads.listPhotobyOutcomeID(#outcomeID#)> <h3>#lastname#, ...
1
vote
2answers
34 views

How to hash in CFMX_COMPAT in c#

An existing coldfusion website is to be converted to dot net. In the coldfusion code, the password is hashed using its hash() function with no algorithm: SomePassword = '#hash(fldPassword)#' I ...
1
vote
4answers
63 views

Issue sending CSV attachment via ColdFusion to user reading email in LotusNotes

I using ColdFusion to build a CSV file and then send it as an email attachment to a user. I copy myself on the emails, and I receive the attachment as a CSV file in both Gmail and Outlook, and I can ...
1
vote
1answer
57 views

Coldfusion connection string

This is new to me: I am looking into a coldfusion website. The problem is I cannot even find the connection string. In some qryXXX.cfm files, I find <cfquery name="GetXXX" datasource="xxxx"> ...
4
votes
2answers
93 views

What can CF10 RESTful API do that Coldbox RESTful API cannot do? And vise versa?

Just started looking at some MVC JS framework / library and most of them expect a RESTful API endpoint, which got me thinking... what can I do using CF10 that cannot be done using CF9 + ColdBox ...
-2
votes
0answers
113 views

How hard will it be to get a job in another language after working with ColdFusion? [closed]

so I’m out of college like many are at this time, with some work experience under my belt mainly with C#, but not a lot. And basically I may have a job opportunity, but it’s working with ColdFusion ...
2
votes
3answers
103 views

do I have to scope query output in Coldfusion?

If I'm a running a database query/stored procedure in Coldfusion, what is the proper way to reference fields returned from the query? <cfstoredproc procedure="proc_select_extern" ...
0
votes
2answers
63 views

How to use Ajax to pass Javascript variables to Coldfusion?

I need to use Javascript to detect the local users UTC offset and then use that UTC offset in my cfquery's for the rest of my large website. Here is a top down logic that I'd like to run. I just ...
0
votes
3answers
54 views

Javascript variables in ColdFusion

I have a JS function that creates a variable based on what the user is selecting from drop down list. I need to use that JS variable back on my CF code to be able to use it on operations other than ...
0
votes
1answer
49 views

How to store a Secret Key for Encryption

I am building an authentication system in which some information is being stored encrypted so that it can't be human readable. Because it is encrypted, I need to use the generateSecretKey() function ...
4
votes
2answers
58 views
+50

wsdl2 does not show extended functions in ColdFusion 10

I have a simple test setup: component displayname="test1" extends="test2" { remote Any function ping1() {} } component displayname="test2" { remote Any function ping2() {} } When I cal the ...
0
votes
1answer
44 views

Where to render Ajax search results in an object oriented approach using Coldfusion?

I'm updating a Coldfusion8/MySql site with a fairly complex search from "spaghetti to object" (= separate view, controller and process - no framework, everything handled by Jquery Mobile). I need to ...
0
votes
1answer
39 views

Looping over Months not displaying the last month

I am trying to loop over motnhs like. <cfloop index="i" from="05-2012" to="12-2012" step="#createTimeSpan(31, 0, 0, 0)#"> #LSDateFormat(i, "MMM")# </cfloop> but it displays ...
1
vote
3answers
40 views

Parse & Compare Data using Coldfusion & MySQL

First, I'll explain what I need to do, then how I think I can achieve it. My current plan seems very inefficient in theory, so my question is whether there is a better way of accomplishing it. I ...
0
votes
2answers
54 views

404 when post submitted; found when directly called

I have a ColdFusion enabled form (for validation) submitting to a separate page. When this form is submitted it is showing me a 404 on the action page, yet when I directly load the action url into the ...
3
votes
2answers
33 views

Coldfusion CFPDF reading a binary database column

Can cfpdf read a binary database column directly? I currently have it where I run a query to get the column. Use cffile to write the file to a directory Then read with cfpdf so I can extracttext. ...
0
votes
1answer
46 views

Using OR and HAVING vs. using AND in MySQL

I'm working on a Coldfusion8/MySQL query in which I'm scanning a database for A-B pairs, for example: S=2, M=2, L=2, XL=2 I'm trying to improve the script that originally handled this, which ...
0
votes
2answers
71 views

Coldfusion SerializeJSON creating blank values

I'm trying to use SerializeJSON() to turn an instance of CFC into a string, whcih I can store in a database and then pull back out again later on. The problem I'm having is using the following code: ...
0
votes
3answers
75 views

selecting fields from multiple MySQL tables and what does (1=2) mean?

I'm trying to understand what is happening in the following Coldfusion/MySQL query I'm having to update (and I'm in my first month of CF/MySQL). I have a query running before a search, which sets the ...
0
votes
1answer
33 views

Can I read a spreadsheet directly from a file input?

I have a form with an option to upload and process a spreadsheet. <form method="post" action=""> <input type="file" name="myFile" /> <input type="submit" name="process" ...
0
votes
1answer
55 views

Coldfusion query conversion to msword

I am trying the last two weeks to convert a query data to ms word doc using Coldfusion.The only approach that i have found is: <cfcontent type="application/msword"> <cfquery ...
0
votes
2answers
31 views

how to make a fixed-number-of-words-search dynamic in Coldfusion/MySql?

I'm trying to upgrade a Coldfusion8/MySQL site. The site has a complex search which, (among other criteria) takes text strings and searches these in a keyword table. I don't want to do a FULLTEXT ...
-1
votes
0answers
50 views

Add Basic HTTP Authentication header to a request in Coldfusion [closed]

I am trying to implement SSO between a Coldfusion application and a Java application. My Coldfusion page has an iFrame, which would load the Java page. Based on the user session active in the ...
2
votes
1answer
56 views

How to access query column with multiple words?

I'm using a cfspreadsheet read to read a sheet into a query object. <cfspreadsheet action="read" src="TestExcel.xls" sheet="1" query="spreadsheetData" headerrow="1" excludeHeaderRow="true"> ...
0
votes
1answer
45 views

how to pass an event object from a function to an AJAX call and use it in its success handler?

I have a multi-languages Jquery Mobile site (Backend is Coldfusion8/MySQL). I'm using a generic Ajax-form-poster to "pass" data to the server, which I'm calling throughout my script passing along ...
1
vote
1answer
56 views

Coldfusion HQL query with relationships - unable to resolve path

I'm having problems using an HQL query to get data from a related entity. I have a 'Photoshoot' entity with a one to many relationship to an 'Image' entity. I'm trying to pull all images that belong ...
0
votes
1answer
57 views

asp.net mvc3 - external includes or sharing layouts across projects?

Ok, I'm still new to Asp.Net and MVC3. I'm becoming more familiar with things but still experimenting after finishing my first web application (a simple web form submission into a database). Now I am ...
-3
votes
2answers
79 views

JSON conversion issue

I am trying (in Javascript an Coldfusion) to convert: {"val1":"member","val2":"book","val3":"journal","val4":"new_member","val5":"cds"}, Into this: { member,book,journal,new_member,cds} Notice ...
0
votes
1answer
27 views

Storing a cfwindow as a coldfusion module

I'm a coldfusion newbie. I have a cfwindow that performs various tasks for me with a form that rests inside it. All that works well, except now I want to add the cfwindow to many pages, and I'd like ...

1 2 3 4 5 79