Questions tagged [coldfusion-11]

ColdFusion is a server-side rapid application development platform, from Adobe. ColdFusion 11 was released on April 29, 2014.

ColdFusion is a server-side rapid application development platform, from Adobe. ColdFusion 11 (Splendor) was released on April 29, 2014. New features include:

Preview the new features in ColdFusion Project Splendor:

  • Leverage your existing CFML skills to develop mobile apps and use built-in integration with Adobe Phonegap to build easily and quickly deliver them as installed apps that run on iOS and Android™ devices.
  • Use unique on-device debugging capabilities to identify and fix errors in both installed apps as well as browser-based mobile applications.
  • Security enhancements to limit the attack surface by restricting default remote access to the admin portal.
  • Develop applications faster and more easily since every functionality of ColdFusion Project Splendor can be accessed using CFSCRIPT.
  • Use the improved conversion engine from Adobe to generate superior quality PDFs from HTML pages.
  • Allow your end users to access your web application with their existing social media accounts.
  • Maintain and modify existing code faster and more easily with member functions on ColdFusion objects.
  • Secure your PDFs using electronic signatures and manipulate them using full DDX support.
557 questions
4
votes
0 answers

Script based reserved key word not accpted but it's accept in tag

Here I come up with question about Reserved words. As per my knowledge a keyword can not be a variable. I've faced a issue about passing reserved word string as a argument in both script based code but not face any error while wrote a same code in…
Kannan.P
  • 1,263
  • 7
  • 14
4
votes
1 answer

Why is the FORM scope showing fewer values than were actually submitted by this AJAX file uploader?

I'm not sure I understand how to phrase my question, but I believe it's specific to ColdFusion's handling of certain AJAX form data, despite my reference to a specific JavaScript plugin. I'm trying to implement the FilePond uploader on a ColdFusion…
Michael
  • 2,546
  • 2
  • 20
  • 26
4
votes
1 answer

Coldfusion 11 Update 16 - Schedule Tasks have disappeared

We upgraded our Coldfusion 11 instance to version 16 (11,0,16,313933) and now all the scheduled tasks seems to have disappeared. A quick google search doesn't seem to give any clues. I have had a look in the update log and there is nothing which…
Gaurav S
  • 999
  • 8
  • 16
4
votes
3 answers

.Net time string conversion in Coldfusion

I have a six digit time string coming from .NET I would like to convert to a timestamp in ColdFusion. What would be the correct way to convert this? string= 20190126195631 The date is simple: thisDate =…
Stephen Sharpe
  • 167
  • 1
  • 8
4
votes
1 answer

How to limit size of cfdump for entities

Is there away to limit size of cfdump when we're dumping an ORM entity? It seems that cfdump will try to load and display ALL entities related/associated to (as defined in many-to-one or one-to-many relationships) the entity being dumped. Sometimes…
Nick
  • 354
  • 5
  • 15
4
votes
2 answers

cffunction/cfargument pass unsigned int32

I'm working on building a function that will convert an unsigned int32 to an ipv4 address and it all works great until I test with the upper half of the range.
Scott Jibben
  • 2,229
  • 1
  • 14
  • 22
4
votes
1 answer

Presence of single or double quotes in SERIESLABEL or ITEMLABEL giving error in CFCHART

I'm using CF Pie chart for one of my application. But it is working weird. The following code is the chart code and it is giving an error. It doesn't even display the chart. I know that, it is due to the presence of double quotes in the value of…
Rajesh Manilal
  • 1,104
  • 9
  • 20
4
votes
2 answers

Coldfusion 11 - Global variables - Application.cfc or Application.cfm

I'm working on an application done in Coldfusion 9. I have to migrate it in CF11 and I would like to improve the code. The current application in CF9 is done like this: Application.cfm:
coeurdange57
  • 715
  • 1
  • 8
  • 29
4
votes
1 answer

Returning a Date object in JSON using a specific format

I am using CF11 with ORM and service layer to return ORM objects. My Angular app requires that JSON dates be returned in one of the two following formats: 'yyyy/MM/dd' (i.e., '2014/08/25') 'yyyy/MM/dd HH:mm:ss' (i.e., '2014/08/25 16:35:10') My…
Sam M
  • 4,136
  • 4
  • 29
  • 42
4
votes
2 answers

Jsoup in CFscript execute connection as POST

The page I want to parse could be get only by POST method. This is easy for Java as I can see: import org.jsoup.Jsoup; Response res = Jsoup.connect("URL").method(Method.POST).execute(); Document doc = res.parse(); I could not produce the same thing…
master-lame-master
  • 3,101
  • 2
  • 30
  • 47
4
votes
1 answer

Converting png images with transparency to jpg is ruining the image

I am trying to convert any image that a user uploads into the jpg format with a white background. However, I've noticed that when the user uploads a PNG image which contains transparency, ColdFusion is ruining the whole image. It almost looks like…
volume one
  • 6,800
  • 13
  • 67
  • 146
4
votes
1 answer

ColdFusion 11 cfchart xAxis format

I am trying to create a simple line chart in ColdFusion 11 and would like to format the xAxis to show a date format like mm-dd-yy instead of the full date/timestamp that is showing by default. My code is:
JamesE
  • 3,833
  • 9
  • 44
  • 82
4
votes
1 answer

Query of Queries variable scoping

Is it possible to scope variables when using query of queries? This works return queryExecute(" SELECT Title, Slug, Menu, MenuOrder FROM qryResult WHERE Menu = 'Y' ORDER BY MenuOrder ", [], …
James A Mohler
  • 11,060
  • 15
  • 46
  • 72
4
votes
2 answers

How to get associative arrays notation to assign simple values

I created sample code using the Microsoft SQL Server Northwind demo database. If you don't have access to this demo database here is a simple (MS-SQL) script to create the table and a row of data for this question. CREATE TABLE [dbo].[Products]( …
Scott Jibben
  • 2,229
  • 1
  • 14
  • 22
4
votes
1 answer

CSV(having extra quotes in field value) to array in ColdFusion

I am converting a CSV file to array using this post. Everything was working fine. But I got a file which contains extra quotes in field values like: "bash: "shortcuts" are" and "bash: \"shortcuts\" are". So I tried replacing these quotes like…
Abhishekh Gupta
  • 6,206
  • 4
  • 18
  • 46
1 2
3
37 38