The official community for ColdFusion.
Recently active
After these steps to upgrade Java, CF services won't restart.Current version of CF is 2016,0,11,314546 Downloaded JDK 11.0.3 from Adobe download site, resides at C:\Program Files\Java\jdk-11.0.3 (without source code)Stopped CFUpdated jvm.config #java.home=C:\\Program Files\\Java\\jre1.8.0_211 java.home=C:\\Program Files\\Java\\jdk-11.0.3Restart of CF fails.Revert to JRE 1.8 and restart CF successfully.No logs. Event log points to third party error and Service Specific Error Code 2.What am I missing?
Hi docs anybody knows, how I can connect to an external database over ssh ?Kindly regards.Thorsten
How does the CF 2018 performance monitoring toolset actually monitor a server when installed on a different box? Is it reading log files or actively reading operations in real time? Also why is it recommended to install it on a another box, what kind of resources would it consume if on the same box as the web server?
This is might be earlier question for everyone here in this forum, I wanted to know few information that I'm missing.To get server information I'm dumping "server.coldfusion.productversion" and it outputs 2018,0,04,214335. can someone help me out what are these list shows? Thanks in advance.2018-- CF version0--?04-- update level214335--?
Hi,does exist a way in AWS Cloud to achieve scalability without buying Amazon Marketplace ColdFusion AMI? Is there a special Adobe ColdFusion license for those purpose (a sort of "on demand" license)?Thanks for your help!
Hi,I develop an application for management of meetings in CF with an Oracle DB. Each meeting is linked to a unit (UNIT_ID)I'm trying to execute queries on fields and I obtain an Orable error:So I have 2 tables with DATA fields (DD/MM/YYYY)Table UNITS: UNIT_ID (PK) - UNIT_TITLE - DT_DEB - DT_FINTable MEETING: meeting_ID (PK) - TITLE - DATECREA - UNIT_IDThe request for getting the creation date of the meeting:SELECT TO_DATE(DATECREA,'DD/MM/YYYY') AS DATECREA FROM MEETING M WHERE M.meeting_ID = 45533The result: 30/05/2010The request for getting the start and the end dates of all unit versions of the meeting unitSELECT UNIT_TITLE, TO_DATE(DT_DEB,'DD/MM/YYYY') as DT_DEB, TO_DATE(DT_FIN,'DD/MM/YYYY') AS DT_FINFROM UNITS WHERE UNIT_ID = 231057The results:DT_DEBDT_FIN16/09/200529/04/200930/04/200930/06/201001/07/201031/12/2011I need to execute this query now for getting the good version of the unit used for the meeting<cfquery name="qry_existInAppref" datasource="#application.datasource#"&g
Have installed multiple instance of ColdFusion on 3 servers to setup and test configurations,Looking for help on deploying application to a cluster documentation does not seem to discuss anything beyond single instance deployment
Hi,Is it possible to check if an Array is defined and in the same CFIF statement check to make sure it's numeric?Something like:<cfif ArrayIsDefined(F,2) AND IsNumeric>Taking it one step further I need to make sure the value is between 1 and 99.ArrayIsDefined and IsNumeric and GT 0 and LT 100....Suggestions?Thanks in advance.Gary
I need to use a java library from Coldfusion 2018. Everything's great except one method in the library is named ".is()", and Coldfusion throws an error on it thinking it's an operator. I cannot modify the java library to rename this method. Is there any other solution to calling it from Coldfusion?Thanks,
We have an application that makes heavy use of binds, in particular between related cfselects. When we moved our application from CF2010 to CF2016 the binds and binds on load fail on one of the large forms with over 100 (320 to be exact) form variables. This post parameter has been appropriately set in the CF Administrator settings page. It works perfectly on a form with much fewer form fields (69) with 9 binds. There are perhaps about 20 binds on the larger form (320 fields) and only one of them works.What is the problem here and how can I fix this? We are being tasked to upgrade to CF2016 becuase of the enhanced security issues, but the application is heavily dependent on the binds.I cannot seem to find answers to this anywhere.Any help will be most appreciated.Bill
This is my table for messagesI'm trying to pull data from only mid no 1 and mid no 4, basically my goal is to get the last message from every senderFirst i created a query to pull all the message for a user, in this case receiver id is 1<cfquery name="messages_tb" datasource="appdb"> SELECT * FROM messages WHERE receiver = <cfqueryparam value="1" cfsqltype="cf_sql_integer"></cfquery>then i created a list of every sender id<cfset list.messages_tb_sender_uid = ValueList(messages_tb.sender)>after that i did this<cfquery name="messages_tb" datasource="appdb"> SELECT MAX(mid) as last_id from messages WHERE sender IN ( <cfqueryparam value="#list.messages_tb_sender_uid#" cfsqltype="cf_sql_varchar" list="yes">) and receiver = <cfqueryparam value="1" cfsqltype="cf_sql_integer"></cfquery><cfset list.messages_tb_last = ValueList(messages_tb.last_id)><c
Trying to get hold of Adobe support on this but wondering if I can get help here faster.Just purchase the CF2018 Enterprise edition. Enter the serial number into CFAdmin and it logs me out with this message:"There was an error accessing this page. Check logs for more details."Application log has this entry:"Warning","http-nio-8500-exec-8","07/02/19","10:00:32",CFADMIN,"There was an error while verifying the token. Either the session timed out or un-authenticated access is suspected."Ideas?
Hello community, first of all, for all of you in US, happy 4th of July!I am having an issue I need some help with: I need to connect to an sFTP server, retrieve the list of XML files (files will be placed there for CF to do something with them) and then loop through the contents of these XML files and insert the values into a database.This is what I do: I open the connection and ask for the list of files using CFFTP. That works perfectly. Now, when I use xmlParse() to retrieve the XML content, when the file is in this sFTP server, I get the error "Content Is Not Allowed In Prolog". If the same file I place it on my own website for testing, then contents are shown without any issue.From the image, is line 30 where I tell CF where the file is located.I have tried BenNadel's post about this issue (Content Is Not Allowed In Prolog - ColdFusion XML And The Byte-Order-Mark (BOM) ) but didn't work. Using this suggestion the error says "Premature End of File".The XML file I am testing with is
Hello all,I am a newbie to ColdFusion and got stuck in an exercise.I am having a form where the user picks a file.<cfform action=""> <cfinput type='file' accept='.json' name="choosefile"><br> <cfinput type="submit" name="loadData" value="Load JSON data"></cfform>Now i want to read the data from file upon submit.<cfif isdefined("form.loadData")> <cffile action="read" file="#form.choosefile# variable="jsondataFromFile"> <cfdump var="#jsondataFromFile#"><cfif>Now when i run the code i get FileNotFoundException because ColdFusion is searching for file chosen in temp directory.How do i read the file?Please help. Thanks in advance!
Each time the operating system is patched the RESTful services must be recompile or they throw errors when accessed. Version is CF 2018 on Windows 2016 server.
Hello, all,We recently applied the most recent patch for CF11, and now we are being flooded with alert emails that a variable named "qRead" is undefined.This is happening in a CFC function that gets distinct years from a database for news articles. <cffunction name=icleYears" output="false" access="public" returntype="Query" > <cfset qRead = "" /> <cfquery name="qRead" datasource="news_2016" cachedwithin="#CreateTimeSpan(0,0,10,0)#"> SELECT DISTINCT TO_CHAR(TDATE,'YYYY') articleYears FROM &nb
Hi Everyone,I have installed CF 2018 on Centos 7 and when I started the web connector creation I got weird results:mod_jk.so and workers.properties files were created in /etc/httpd/conf folder.My previous experience with CF 2016 is that those files should be in cf_root/config/wsconfig/{magical number} folder. Is it something new with CF 2018 that moved those files to /etc/httpd/conf or I am doing something wrong?The command I have used for connector creation is:/opt/coldfusion2018/cfusion/runtime/bin/wsconfig -ws Apache -bin /usr/sbin/httpd -script /usr/sbin/apachectl -dir /etc/httpd/conf/ -vor even this one does the same:java -jar /opt/coldfusion2018/cfusion/runtime/lib/wsconfig.jar -ws Apache -bin /usr/sbin/httpd -script /usr/sbin/apachectl -dir /etc/httpd/conf -vBack in CF 2016 file structure was:/etc/httpd/conf contained httpd.conf, magic and mod_jk.conf/opt/coldfusion2016/config/wsconfig/1 contained mod_jk.so, uriworkermap.properties and workers.propertiesPlease advise,Thanks!
Hi Guys,Trying to add REST resource but getting this error below form admin page -->Rest Resource. Can someone help me on this issue?Error","http-nio-8500-exec-1","07/02/19","18:06:44","cfadmin","The request has exceeded the allowable time limit Tag: cfoutput The specific sequence of files included or processed is: /opt/coldfusion2018/cfusion/wwwroot/CFIDE/administrator/extensions/restwebservices.cfm, line: 61 "coldfusion.runtime.RequestTimedOutException: The request has exceeded the allowable time limit Tag: cfoutput at coldfusion.tagext.io.OutputTag.doStartTag(OutputTag.java:92) at cfheader2ecfm1237343596.runPage(/CFIDE/administrator/header.cfm:61) at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:262) at coldfusion.tagext.lang.IncludeTag.handlePageInvoke(IncludeTag.java:729) &
Hello, we're using Coldfusion and SQL and are trying to make a page with a query with only one table with one row and need it to force a page break after so many rows for example 50. We could also have it force a page break after 8x11 page is filled. I'm using a header and it will never show the header (theas) on page 2 sense it can't figure out where the page break is. Any help would be great.<head><script>thead {position: sticky;top: 0px;}</script></head><thead><table width="100%" cellspacing="2" cellpadding="0" border="0" align="center" bgcolor="#CCCCCC" contenteditable="false"><td bgcolor="#EDE9C6" width="5px"> <div align="center"><nobr><font size="-2">fmt</font></div> </td><td style="overflow:hidden;" bgcolor="#EDE9C6" width="23px"> <div align="center"><strong><font size="-2"> <nobr> &
Hello, all,I've got a CFC that accepts an AJaX submitted form that has been converted to JSON, converts it back into a form, does form validation, and then puts everything into an Excel spreadsheet. Been working flawlessly for years.I'm in the middle of changing the CAPTCHA, and suddenly I'm getting a 404 error in response.Diagnostics: Failed to add HTML header. ColdFusion was unable to add the header you specified to the output stream. This is probably because you have already used a cfflush tag in your template or buffered output is turned off. The error occurred on line 352.Line 352 of the CFC is:returnSOrigin &= "<p style='margin:0 20px; text-indent:-20px;'>POE for Shipment Origin for Cargo #val(sdLoop)# does not exist in form.</p>" & application.crlf;There is no CFFLUSH being used _anywhere_ in this process. It was working on Friday, now this. Any thoughts?V/r,^ _ ^
Hello, all,I've got a problem with CFIMAGE that I could use some wisdom with.We have a page that has a query that pulls article data from a content table and it uses a LEFT OUTER JOIN to pull media (pic or video) from a media table.When displaying the article, if there is an associated image we insert the BLOB into an ImageNew() tag, resize it, and then display it. Except it's not displaying. We just get the ALT content. Inspecting the source via browser, I can see where the CF generated IMG tag is, but there's no picture.<cfoutput query="getarticlesbyyear">... <cfif photoID neq ""> <cfset myImage = imageNew("#thumbnail#") /> <cfset imageResize(myImage,"150","","bilinear",2) /> <cfimage action="writetobrowser" source="#myImage#" title="#caption#" alt="#captio
Refer: https://verify-email.org/home/api I want to use their API to get a result back to see if an email address is valid. So based on their documentation, I guess I do (something like) the following?<cffunction name="email_verify" access="remote" returntype="string"> <cfargument name="email" type="string" required="true"> <cfoutput><cfhttp url="https://app.verify-email.org/api/v1/my key/verify/#arguments.email#" result="variables.resultxml" /></cfoutput><cfset variables.parsed_result = xmlParse(variables.resultxml.fileContent)> <cfreturn variables.parsed_result></cffunction>The above syntax is obviously wrong as I am getting a console error An error occurred while parsing an XML document. What am I doing wrong?(I tried without the <cfoutput> w
have a specific query that for unknown reason takes >20sec to load from a CF page but it's instant when ran directly on mssql studionotes (Datasource=db2, Time=39320ms, Records=20) in @ 08:05:54.054SET TRANSACTION ISOLATION LEVEL READ UNCOMMITTED; SELECT TOP 20 id,productId,itemID,createdOn,message,createdBy,comments,manual,logType,qty,dataid,qtyOnHandAdj FROM inventoryLog WHERE itemid = ? AND logType <> 9 ORDER BY createdOn Desc Query Parameter Value(s) -Parameter #1(CF_SQL_INTEGER) = 40483i played around with the TOP N. ONLY TOP 20 takes long. TOP 19,21,25,50 whatever all take millisecondsi played around with column list. if i exclude the dataID column, it's instant. if i alias dataID as something, it's instant.if i alias dataID as dataID, it's instant.so it's only bad when TOP 20 and dataID without alias. in CF2018 update 4
I am trying to install ColdFusion 9 on Windows Server 2016 (x64) this is a development server. I read that I needed to run in compatibility mode (Windows 7) for the x64 install so I did that; the installer initialized and it opened but them immediately closed. Has anyone else had this issue? Any recommendations would be greatly appreciated.
Not specific to CF, maybe Javascript or Jquery ... looked everywhere on google and found nothing. So I am on a web site the other day and in addition to being able to upload your government issued photo id, you could also say cheese and have your built in laptop web cam take your photo. How do you do that? What library tool?
Remix with Firefly Community Gallery
Thousands of free creations to fall in love with and remix in Firefly.
Already have an account? Login
No account yet? Create an account
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.