1
vote
1answer
67 views

How do I ensure SerializeJSON keeps trailing/leading zeroes?

I have an application that is using SerializeJSON to encode query results: #SerializeJSON('Ok works fine')# Unfortunately it trims the trailing zeroes from numbers: #SerializeJSON(12345.50)# ...
7
votes
1answer
54 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
81 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 ...
0
votes
1answer
58 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
45 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
2answers
51 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 ...
0
votes
1answer
73 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
28 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
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
56 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 ...
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> ...
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 ...
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: ...
1
vote
1answer
53 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
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(), ...
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 ...
0
votes
0answers
52 views

ColdFusion CFHTTP GET strips cookie

I'm running into issues trying to pass a cookie in my CFHTTP GET Statement. Has anyone else experienced this? Pointers would be appreciated. BTW - I am using the x-http-method-override, because I ...
2
votes
0answers
58 views

ColdFusion 9 CFCookie error

Error message we get is as follows: tried to access method coldfusion.runtime.NeoPageContext.isUnderCFThread()Z from class coldfusion.runtime.CookieScope This started happening without any code ...
1
vote
1answer
43 views

Error performing the action getAttachments on CFExchangemail

I am trying to get attachments using the CFExchangemail tag but I am getting this error: Error performing the action. Exchange error Code : 501. The error occurred in ...
0
votes
1answer
44 views

Starting ColdFusion

When I type cfstatus in a command window I get the message: could not contact ColdFusion application server on this machine When I type cfstart I get the message: ColdFusion could not be ...
0
votes
3answers
66 views

Log Slow Pages Taking Longer Than [n] Seconds In ColdFusion with Details

(ACF9) Unless there's an option I'm missing, the "Log Slow Pages Taking Longer Than [n] Seconds" setting isn't useful for front-controller based sites (e.g., Model-Glue, FW/1, Fusebox, Mach-II, ...
1
vote
2answers
119 views

Are constants supported in ColdFusion?

I am using ColdFusion 9 and have checked the documentation but it is ambiguous. http://help.adobe.com/en_US/ColdFusion/9.0/Developing/WSc3ff6d0ea77859461172e0811cbec0999c-7ff1.html (I have PHP ...
2
votes
3answers
75 views

ColdFusion QOQ, compare time values?

I'm trying to execute the below code using ColdFusion QOQ but it's not retrieving any records. I am using time in format "HH:mm" and using MySQL as backend and the original time column has a datatype ...
2
votes
0answers
80 views

Error with relational mapping on new server

I just moved a custom built CMS over to a live server (it was on the development server) because it is easier to set up RSS. The problem is that none of my relational mappings work anymore, despite ...
0
votes
0answers
56 views

Database column undefined when dumped individually - ColdFusion

I have a query that returns DATE - ID - NAME - NOTE - TIME when I dump it by using <cfdump var="#q_data#"> I am trying to dump only the value DATE by using <cfdump var="q_data.date"> but ...
5
votes
1answer
85 views

Public functions become remotely accessible when implementing onCFCRequest()

SOME BACKGROUND: I'm using onCFCRequest() to handle remote CFC calls separately from regular CFM page requests. This allows me to catch errors and set MIME types cleanly for all remote requests. ...
1
vote
3answers
66 views

Getting a list of running requests in ColdFusion 9 standard edition

Does anyone know if there is a way in Adobe ColdFusion 9 standard edition to get a list of the running requests? Maybe by invoking a method from one of the CF Java objects, like ...
2
votes
1answer
57 views

NULL POINTER error when using ObjectLoad(ObjectSave())

Update this has been filed as a bug in ColdFusion, https://bugbase.adobe.com/index.cfm?event=bug&id=3546237 I've been having a problem with CF9 and NULL POINTER errors that do not appear to be ...
1
vote
0answers
29 views

Connection timed out issue in cfexchangeConnection

I have windows 7 (32bit), ColdFusion 9 installed on my PC. My email account is configured in outlook 2007 and it is working fine. But when I try to connect to an exchange server using ...
2
votes
1answer
37 views

ColdFusion: Get variable string value from cfloop

The code below outputs weekend dates in the current month. CODE: <cfparam name="month" default="#DatePart('m', Now())#"> <cfparam name="year" default="#DatePart('yyyy', Now())#"> ...
0
votes
2answers
45 views

caching a query that changes infrequently in Coldfusion/cfWheels

I'm looking at the cache function in the findAll function of cfWheels. I'm a little apprehensive about using it. My queries are not taking that long that I absolutely need them, but a bit of a speed ...
0
votes
1answer
58 views

Getting “method onRequest was not found” Error when binding CFC in cfselect in CF9. Works fine in CF8

I am getting error saying "Error invoking CFC componentname.cfc : The method onRequest was not found in component ..\filepath\Application.cfc". This works fine with CF8 but not CF9 with same code. ...
-6
votes
1answer
44 views

When I click on World tab (Australia and Pacific) it shows that the travel navigation bar is active [closed]

http://www.nzherald.co.nz/australia/news/headlines.cfm?l_id=15 What is the problem and how can I solve it
6
votes
1answer
64 views

How can I get setHeader to overwrite an existing header?

I'm working on a CF interface to the ChromeLogger extension (shameless plug), which uses HTTP headers to log data from a server side language to the Chrome console. Over the course of a request, the ...
1
vote
2answers
56 views

Java Date Formatting with java.text.SimpleDateFormat

I have some code coming from the a ColdFusion 9 app that is java. I would like the date to format like this Nov 05, 2012 no time. currently it is formatting like this. 2012-11-05 00:00:00.0 Here is ...
0
votes
1answer
47 views

ColdFusion file upload issue

I've got the CFFileUpload working on my local dev system, I just uploaded it to my production server - both are running ColdFusion 9. Everything works fine on my local dev box. When I try to access ...
0
votes
2answers
257 views

illegal xml character on SQL Insert

I am trying to insert the following string into an sql xml field <?xml version="1.0" encoding="UTF-8"?> <Response> <Ip>x.x.x.x</Ip> ...
0
votes
2answers
76 views

CFStoredProc Timing Out

I have a very basic app that plugs data into a stored procedure which in turn returns a recordset. I've been experiencing what I thought were 'timeouts'. However, I'm now no longer convinced that this ...
0
votes
2answers
72 views

Pass parameters to a modal - ColdFusion

I am trying to pass parameters to a user profile modal when I press on their name. My table is generated dynamically with a loop and one of the values is something like this: <td><a ...
0
votes
2answers
71 views

What conditional logic to use for numbers with leading zeros?

I am running ColdFusion Enterprise 9.0.1.274733 on Windows Server 2008 R2 with Java 1.6.0_22. I am calling a SOAP web service that returns various data to me. One of the data elements contains a code ...
-4
votes
1answer
74 views

Run multiple Coldfusion project at the same time [closed]

Right now, I can run one coldfusion at once time. But, I want to run many coldfusion projects at the same time, but I can not do it. Who can share with me. Thank you so much. When I desploy one ...
0
votes
1answer
116 views

Setting session variables with JavaScript in ColdFusion

I have a website with multiple tabs. Each tab runs a separate report based on a set of filters that take their values from session variables. How things work now: While the user is inside a report ...
1
vote
1answer
29 views

How to resize RTF images

I am writing an image to an RTF document using ColdFusion 9 and I want to size the images to a certain size. How would I do that in the RTF? I cannot change the stored image size or make a new one. ...
1
vote
1answer
47 views

Nested floats do not work in CFDOCUMENT css

The below html was provided inside a <cfdocumentitem type="header"> block. But the output is empty. <div class="grid"> <div class="span5"> ...
1
vote
2answers
141 views

ColdFusion 9 cffile error Access is Denied

I am getting the following error: The cause of this exception was: java.io.FileNotFoundException: //server/c$/folder1/folder2/folder3/folder4/folder5/login.cfm (Access is denied). When ...
1
vote
1answer
85 views

Coldfusion ApplicationStop Function

I am working on a CF9 application, and we have a process that is sometimes required that calls applicationStop() My understanding of this function is that it shuts down the app, and the app is ...
0
votes
1answer
46 views

Coldfusion: storing routes and other variables for application in

I'l like to keep a a bunch of variables for access in the application.cfc or other coldfusion files that may be using them. I've got some routes information where depending on the url entered, ...
0
votes
3answers
69 views

How to store time shown by cftimer in a variable?

I want to store the time taken by a code to execute in a coldfusion variable. There is a tag called cftimer that displays the time taken by a code to execute. Is there a way to store the time ...

1 2 3 4 5 14