Questions tagged [coldfusion-2016]

ColdFusion is a server-side rapid application development platform, from Adobe. ColdFusion 2016 was released on February 15, 2016. ColdFusion was later updated to ColdFusion 2018.

New features in ColdFusion 2016:

  • PDF Enhancements
  • Updated functions including Query and Array processing functions
  • Language enhancements including safe navigation (?.)
  • Command Line Interface
  • Swagger document generation

See: https://helpx.adobe.com/coldfusion/2016/topics.html#dynamicpod_reference

353 questions
0
votes
1 answer

CFMAIL error: This operation is not allowed on a closed folder

We have a script that checks a Gmail inbox for new messages, processes any it finds based on the subject and sender, marks said messages read, and then after processing moves the messages to a folder called "ProcessedMessages". This script has been…
Nicholas
  • 1,974
  • 4
  • 20
  • 46
0
votes
1 answer

How to remove ROOT directory from FTP using CFFTP

I need to remove the Directory(folder) from FTP server using coldfusion. My server folders looks like below, /jawa/notes/test.cfm /jawa/notes/test1.cfm /jawa/notes/test2.cfm /jawa/notes/test3.cfm /jawa/test1.cfm /jawa/test2.cfm /jawa/test3.cfm My…
jawahar N
  • 462
  • 2
  • 13
0
votes
1 answer

jQuery populate select list has [object Object] as first entry

I am getting an unusual response from a jQuery to populate a select List. firstly, here is the ajax call; loadShowAllReports = function() { $.ajax({ url: "cfc/Reports.cfc" , type: "get" , dataType: "json" , data: { …
BigBear
  • 59
  • 4
0
votes
1 answer

ColdFusion cfloop issue

I'm running ColdFusion 2016. I have a cfloop which pulls in data from a query, all other ColdFusion queries work fine on the page and if I pull in the same variable in an output outside the loop, it works fine, except the loop is giving me an error.…
elixireu
  • 255
  • 3
  • 15
0
votes
0 answers

The content of this document process takes more than 60000 milliseconds to process

I am receiving this error in Coldfusion The content of this document process takes more than 60000 milliseconds to process. This timeout is obtained from the request timeout set in the ColdFusion Administrator. The specific sequence of files…
David Brierton
  • 6,977
  • 12
  • 47
  • 104
0
votes
0 answers

ColdFusion2016 services are not getting started

ColdFusion2016 services are not getting started, It was running since last year now they are stopped suddenly, while I'm checking the cf-out logs it says "Either the server is already running or some other application is using the HTTP…
0
votes
1 answer

structs with structs and booleans

I have a variable that consists structs. These structs can have CFBoolean variables, more structs, and other variables. In the beginning this was nested two levels deep. We are now moving up to four levels. I don't like my current approach. I could…
James A Mohler
  • 11,060
  • 15
  • 46
  • 72
0
votes
2 answers

ColdFusion Rest API to SCOUT - Content-Type: application/vnd.api+json

I am attempting to run a simple REST api with ColdFusion and receiving same error regardless of attempt. The call works fine in Postman with the 4 params. But cant recreate in ColdFusion CFHTTP.
Torsten
  • 29
  • 3
0
votes
1 answer

URL Encoding : Javascript

I have a javascript capturing signatures and data. The " are getting lost/cutoff and not conserving. I assume this is a URLEncoding issue. This is the original. '' + And I have…
Merle_the_Pearl
  • 1,391
  • 3
  • 18
  • 25
0
votes
1 answer

Coldfusion 2016 API Manager not coming up after restart

I'm running api manager on linux machine. I did restart and now it's not coming up again. I am keep getting following error related to redis server. I did restart several times but still same error. All Add-on is locally installed in the same…
Ronnie Kumar
  • 635
  • 5
  • 18
0
votes
0 answers

Application file not working after upgrading from ColdFusion 11 to ColdFusion 2016

I have been using a basic Application.cfc file (below) that stopped working when the server was upgraded from ColdFusion 11 to ColdFusion 2016. I have tried the following and several variations on it but cannot get it to work. This is what worked on…
Andy Ray
  • 1
  • 1
0
votes
2 answers

Image display within cfdocument

I am saving images in my db field like data:image/jpeg;base64,/9j/4AAQSkZJRgABAgAAAQABAAD/2wBDAAg...... When I display the images using on a normal page it works fine. When using in a cfdocument…
Paul
  • 11
0
votes
1 answer

ColdFusion forcing CSRF to fail

I have a website that check for CSRF tokens when a user logs in. The form looks like Later it is checked with if (framework.getCGIRequestMethod() ==…
James A Mohler
  • 11,060
  • 15
  • 46
  • 72
0
votes
1 answer

How to get response payload using Coldfusion?

I trying to get a response payload, that's returns from developer tools->network->response. Could you please share how to do it? JSON {"COLUMNS":["AGE"],"DATA":[[24]]} Response Payload
Ravan_jack
  • 33
  • 4
0
votes
2 answers

Convert minutes to Hours and mins in coldfusion

I want to convert 207 minutes to Houres and mins such as format (3 Hours 37 Mins). The User will enter 207 minutes and the output should be 3 hours and 37 mins.
Basit Ali
  • 155
  • 6