ColdFusion is a server-side rapid application development platform, implementing the dynamic general purpose CFML programming language.
0
votes
2answers
54 views
Trying to compare a rowvalue to form value while in a query using cfif and performing the query
I know, the title sounds confusing but I literally couldn't think of another way to word it. Anyway, here's what I mean
<cfquery name="search_all" datasource="ContactData">
SELECT DISTINCT
...
1
vote
2answers
37 views
Coldfusion 8: identify repeating values in a column and counting number of times it appears
I need to query a table in an SQL DB using CF 8, look at a specific column for repeating values, and count how many times it occurs. I am really new to CF and for the life of me can't figure out how ...
0
votes
2answers
49 views
index.cfm append with SES URL in MURA
Recently working with MURA CMS with RAILO on UBUNTU. I am installing MURA in inner folder of root directory.
public_html >> website.
Following code added in .htaccess to rewrite URL to run website ...
1
vote
3answers
84 views
Checking if a Column exists in Database table
I am using the following code to check if a Column exists, when not then create it.
<cfquery name="qSelect" datasource="#dbname#">
select Top 0 * from Elements
</cfquery>
<cfif ...
2
votes
1answer
43 views
Pass PHP value to ColdFusion
I'm trying pass a value from PHP to a ColdFusion page using POST method. It's actually a form that has only one text field and submit button. The question is how to "catch" that value on the ...
3
votes
0answers
51 views
ffmpeg - Can I draw an audio channel as an image?
I'm wondering if it's possible to draw an audio channel of a video or audio file as an image using ffmpeg, or if there's another tool that would do it on Win2k8 x64. I'm doing this as part of an ...
1
vote
1answer
37 views
Suggested Words for Query using ColdFusion / jQuery
I have a ColdFusion query the leverages the full-text capabilities of MySQL (IN BOOLEAN MODE). I am NOT using verity. The search page quickly returns the results based on EXACT word matching ...
0
votes
0answers
25 views
CFWheels - How to highight which posts a user has commented on?
I have a basic query to get all 'posts' in my database table 'posts'. Users who are logged in can comment on these posts. However, I want to be able to highlight (when viewing all posts) which ones ...
-2
votes
0answers
22 views
Dynamically populate dropdown selection
I have three drop down boxes in my form. This is the first:
<select name="select_TaskOrder" onChange="this.form.submit()">
<option>ALL</option>
<cfloop query="allwps">
...
...
0
votes
1answer
42 views
CF10 CFSCHEDULER Overlap
I have a CF10 scheduled task set to run every 2 minutes, though sometimes it takes longer than that to finish. I set up an application variable to prevent the job from running in the event an older ...
1
vote
0answers
25 views
CFGRID Filtering with Checkbox
I have created (with some help) a CFGRID with a Search Filter. This CFGRID displays a checkbox to select an ID. This CFGRID is editable, being that the checkbox can be selected to be passed as a ...
2
votes
2answers
69 views
How to deliver large file with Coldfusion 8?
I am using Coldfusion 8 and I am trying to serve a file of 15mo with cf_content. The problem is that the download freezes randomly. At the moment, I only tried locally, therefore the network is not ...
0
votes
2answers
50 views
cfmail group attribute throws error
I have a query which returns multiple results with just data in one column as different for a particular report number. I want to group the results for one report number and send an email to one ...
0
votes
0answers
26 views
Chaining CFWindow does not work as expected
I am new to ColdFusion but I received a project to create a web app.
I am stuck at making multiple cfwindow's. I have a page that displays all upcoming training classes (called page A). It allows an ...
2
votes
2answers
41 views
CFDocumentItem - change font size
I am creating a footer in a PDF document using <cfdocumentitem type="footer"> and it is working fine. Except that I cannot seem to control the font. I have tried <span>, <font face> ...
0
votes
1answer
49 views
ColdFusion 10 and Azure
I'd like to play around with SQL Azure.
Do you think ColdFusion 10 supports SQL Azure seamlessly? I'm not talking about edge cases, but I did see something about how CF9 would not return the ...
2
votes
2answers
58 views
ColdFusion: Extract information from a .msg file
I would like to make an application where the user drags in a .msg file into my web app. Then ColdFusion would extract the following fields: name, sender email, subject, etc. and pre-populate it in a ...
1
vote
0answers
70 views
Coldfusion AJAX checkboxes - post form data via jQuery or cfajaxproxy?
OK, CF/AJAX newbie here. What I"m building out is a basic database-driven inventory checklist that, for each item, displays:
category
stock number (ID)
item name
picture of the item
color
a ...
3
votes
1answer
39 views
How do I append to a struct set in CFPROPERTY?
I'm using <cfproperty /> to make use of implicit getters and setters in ColdFusion (Railo).
However, for more complex values like structs and arrays, how can I append to these?
<cfproperty ...
6
votes
2answers
107 views
IIS7 is losing the authenticated user for cffileupload (CF10)
On one of our intranet pages, I'm using cffileupload to upload multiple photos:
<cffileupload extensionfilter=".jpg,.jpeg,.png,.gif"
url="/submissions/photo_gallery.cfm"
...
-1
votes
2answers
79 views
CFOUTPUT with query from two tables
Here is my code that I am working with -
<CFOUTPUT>
<CFQUERY NAME="getParser" DATASOURCE="LibraryDB" DBTYPE="ODBC">
select name
from parser_acronym
where init = '#source#'
...
1
vote
2answers
55 views
jSoup - Is it possible to match elements with a minimum attr() length?
I can match elements in jSoup very easily, but then, after the fact, I need to check these values to see if they are at least longer than 1 character.
I was wondering if there was a way to match ...
0
votes
2answers
59 views
Delete textbox dynamically on click (ColdFusion) jquery
I have a form where the user can click a particular link and dynamically add text boxes . I want to be able to put up a delete link to delete a particular text box which is dynamically added by the ...
0
votes
1answer
33 views
Find file in a directory based on ID# in filename with ColdFusion 9
I've got a page that displays a specific video for donors who receive an email from our foundation. The email uses variable data to create a URL with the donor's ID# from our database like this: ...
0
votes
1answer
41 views
With bind/on change how to show a Row
I have a form using coldfusion that currently is using binding to generate a value. After a user selects from a pull down a selection is automatically generates a value 'Y' or 'N' generated from a ...
2
votes
1answer
45 views
Coldfusion FileUpload function from cfc file not working
I am currently trying to upload a file using a function from a cfc file. I can get the code to work when I just call the <cffile action="upload"> on the same page. However, I wanted to learn how ...
1
vote
1answer
52 views
ColdFusion ValueList for dynamically named queries
I've discovered that the valuelist() function doesn't like dynamically named queries:
<cfscript>
variables.nNumber = 1;
request.qDirectories = new query();
...
3
votes
2answers
81 views
Is there a way to get each row's value from a database into an array?
Say I have a query like the one below. What would be the best way to put each value into an array if I don't know how many results there will be? Normally I would do this with a loop, but I have no ...
2
votes
1answer
28 views
Unexpected result in jSoup select() with ColdFusion
For some reason, I am always getting an odd result from my select() calls to the jSoup object.
Here is my code (I am trying to get simple title and meta tag values and insert them into my object ...
0
votes
1answer
46 views
Element undefined in coldfusion.xml.XmlNodeMap
I am trying to load these RSS feeds from the NY Times:
http://rss.nytimes.com/services/xml/rss/nyt/Business.xml
http://rss.nytimes.com/services/xml/rss/nyt/Politics.xml
When I use the following ...
0
votes
2answers
43 views
501 error when using AJAX on CFC
I have the following form:
<!DOCTYPE html>
<head>
</head>
<body>
<div>
<label>
<h1>Input 1</h1>
</label>
<form>
...
2
votes
0answers
34 views
ColdFusion 10 SOLR install
I am running Coldfusion 10 (10,0,9,284568) on Win7 64bit developer instance. Initially we had no need for SOLR, so we did not include it in the original ColdFusion install. However, we now have ...
2
votes
1answer
35 views
cfdocument crashing on Coldfusion 9 & Mac
I am trying to generate a simple pdf using cfdocument tag like this -
<cfdocument format="PDF">
<cfoutput>
Bacon ipsum dolor sit amet sirloin fatback #dateformat(now(), ...
0
votes
2answers
83 views
Omitting blank/null records from a query? (Coldfusion)
I am currently trying to find a way to omit any results from a search where the field is blank. The simple method would be to use a <cfif len(example) neq 0>#example#</cfif> but this then ...
2
votes
1answer
40 views
Application.cfc: this.debugipaddress and this.debuggingIPAddresses, what is the difference?
I've seen the following code (A list of ip addresses that need debugging) for Application.cfc:
<!---seen in blogs and perhaps earlier versions of CF documentation, livedocs isn't working for CF 7 ...
1
vote
3answers
45 views
Table in cfmail tag
I am very new to CSS and i am trying to format an email using the cfmail tag. Below is the code:
<cfmail from="ABC@xyz.com"
to="#InvestigatorEmail#"
subject="Reminder ...
2
votes
1answer
143 views
Coldfusion Populate form with dropdown selection using ajax part 2
So thanks to some great feedback from my previous question, I have moved further:
Original Post - Coldfusion Populate form with dropdown selection using ajax
So now, I have successfully submitted a ...
1
vote
1answer
66 views
String index out of range: -1 error with CFFeed
I have the following code in a basic .cfm file. I want to pull the RSS of the NYTimes Business feed.
<cfset feedurl = "http://rss.nytimes.com/services/xml/rss/nyt/Business.xml">
...
1
vote
1answer
67 views
Coldfusion Regex get strings between tags
We currently have some application variables being defined on our apps and also have a special set of tags that are processed within our templates. However I'm finding it to be a bit difficult to ...
0
votes
1answer
71 views
Coldfusion Need Help Parent / Child Dynamic Menu
Basically I want to have each child menu only display on the parent menu ID. But so far, all I can get is all of the child li's connecting to any parent menu I set up.
Here is a diagram to explain ...
0
votes
1answer
57 views
Optional arguments - argument passed is not an integer
I'm sure this must be a simple one, but no amount of tweaking seems to work (I'm hoping I haven't misunderstood the fundamentals here!).
I have defined a function in a CFC as follows:
public void ...
0
votes
1answer
77 views
Trying to fetch an ID from SQL with ColdFusion
I been helping a friend out with a website he has been working on. He was task with maintenance of a ColdFusion website. He is mainly a web design person and my background is asp.net.
The problem I ...
3
votes
2answers
73 views
Using Coldfusion's CFFILE tag to monitor a progress log from FFMpeg
I want to learn how to use the CFFILE tag from ColdFusion to read the contents of a text file. In my case, that text file is a progress log that is generated by FFMpeg while it transcodes a media ...
1
vote
0answers
51 views
What Security Token Service can be easy integrated with ColdFusion 10 or just java? [closed]
I prefer something that integrates with ColdFusion 10 but Java would do the work as well.
I am looking for a security service token (or similar) to use in a web service to authenticate and authorize ...
1
vote
4answers
71 views
Regex to remove last letter of each word in list
I list that I have created in coldfusion. Lets use the following list as an example:
<cfset arguments.tags = "battlefieldx, testx, wonderful, ererex">
What I would like to do is remove the ...
2
votes
2answers
47 views
ColdFusion chr() does not work with high ascii numbers
I am trying to use a cent sign in my ColdFusion program. It appears to be ascii 155. The function Chr() only interprets values up to 127, although the documentation says otherwise. I found a clue ...
2
votes
0answers
47 views
Mix raw queries and ORM operations within the same cftransaction
Is it safe to mix raw queries using cfquery and ORM operations within the same cftransaction tag?
<cftransaction>
<cfquery datasource="test">...</cfqueyr> <!--- A --->
...
0
votes
1answer
48 views
CFDocument PDF radio buttons and checkboxes are huge
I have a page that I am rendering using CFDocument to display the page in PDF format.
However, the checkboxes and radio buttons are out of proportion and displayed huge.
I tried using CSS to change it ...
1
vote
1answer
46 views
Consuming ColdFusion webservice - Web service operation with parameters {} cannot be found
I am testing consuming a web-service and I'm getting an error.
Here is the web-service component:
<cfcomponent >
<cffunction name="listBooks" access="remote" returntype="string" output="no" ...
0
votes
2answers
52 views
Looping through all images within multiple directories in ColdFusion
I'm working on an image manipulation script to create smaller thumbnail images of the images that are already on the server.
The directory structure that I need to search through is as follows:
...



