ColdFusion is a server-side rapid application development platform, implementing the dynamic general purpose CFML programming language.
0
votes
1answer
38 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
1answer
32 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
38 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
64 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
93 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
43 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
52 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
50 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
29 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
38 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
51 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
46 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
68 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
26 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
43 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
46 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
71 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
45 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
30 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
55 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 ...
-8
votes
3answers
73 views
How much time would it require for a Java developer to learn ColdFusion?
I know Java and Java EE and would like to learn ColdFusion.
I have priority task in ColdFusion and need to learn it in short time. Given my background, is it feasible that I could learn basics of ...
2
votes
2answers
54 views
Coldfusion 10 DateFormat Issue
I am using the DateFormat function to convert dates to this format: yyyy-mm-dd.
This is the original format of the date: dd-mm-yyyy. Below is a snippet of the code:
<cfset newdate = ...
2
votes
2answers
44 views
CFDocument Images
I am having a problem displaying images within cfdocument. I have tried several different options without luck (please see test code below). You can see the final effect here.
It seems that ...
0
votes
0answers
37 views
Form Validation Using Custom Functions
I'm using Model-Glue 2.0, and am having difficulty getting form validation to work when using custom functions instead of MG's ModelGlue.genericCommit functionality for database entries.
I have only ...
0
votes
2answers
50 views
ColdFusion - Collection loop in cfscript
I have some tag based syntax that works in Railo.
<cfloop collection="#myArray#" item="j" index="i"></cfloop>
The above allows me to access the index 'i' and the item itself, 'j'.
I ...
0
votes
3answers
74 views
Any way to get multiple CFIFs displaying inside CFSET?
At the moment I have this code which is working great -
<CFIF (DailyCount MOD 2) EQ 0>
<CFSET via = '<td style="background-color: DBEFB6;">#src#<br><font ...
0
votes
0answers
32 views
Coldfusion application in subdirectory REST Mapping Issue
I have an application that when it was in the root of the site worked fine. I put it in a subdirectory to test compatibility and it breaks. The structure is as follows:
/cfc/
rest/ -- Rest ...
0
votes
1answer
58 views
Using ColdFusion session variables in PHP
I have a ColdFusion website that is currently running well with login/register modules. I want to use my ColdFusion session in PHP. Can this be achieved?
1
vote
1answer
24 views
SES URL feature of Mach ii not working properly
I have defined the following properties in mach-ii.xml file:
<property name="urlParseSES" value="true" />
<property name="urlDelimiters" value="/|/|/" />
<property name="urlBase" ...
0
votes
2answers
87 views
Cannot get data from MS SQL database using ColdFusion
I'm using ColdFusion and trying to get data from a MS SQL database. The problem is there should be only one line with details. At the same time if I'm trying to login as user or admin it works fine. ...
0
votes
1answer
46 views
Issues with CFZip functionality
I have the following which is working half way. I am trying to CFZip the contents of a downloaded Excel file but there is one problem involved. The code below shows that there are 3 tickets. 1 main ...
0
votes
2answers
53 views
ColdFusion Facebook Share button with Title using Custom image and description
Currently, I use this anchor to create a facebook share button where I can customize its image, Title and Description.
<a target="_blank" ...
0
votes
3answers
53 views
Checkbox within ColdFusion code
I'm trying to display data from database and add a checkbox at the end of each row. I've tried html tags and CF tags but for the last few hours I'm getting errors.. Any help would be great as I'm ...
0
votes
2answers
52 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
36 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
48 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
79 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
42 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
36 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
21 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
41 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
20 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
67 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
25 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 ...




