The official community for ColdFusion.
Récent
We need details for coldfusion 16 same as present in the below link for coldfusion 11http://wwwimages.adobe.com/content/dam/Adobe/en/products/coldfusion/pdfs/cf11/coldfusion11-support-matrix.pdfIt's urgent.Thanks@Anirban
Not sure what happened, but now all my domains don't load anymore. I get this error. I'm at a lost and not even sure where to start to troubleshoot. Can someone please help? This is what is showing on my page when it loads.Thanks in advance.Jimmyat coldfusion.filter.CachingFilter.invoke(CachingFilter.java:62)at coldfusion.CfmServlet.service(CfmServlet.java:219)at coldfusion.bootstrap.BootstrapServlet.service(BootstrapServlet.java:89)at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:303)at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)at coldfusion.monitor.event.MonitoringServletFilter.doFilter(MonitoringServletFilter.java:42)at coldfusion.bootstrap.BootstrapFilter.doFilter(BootstrapFilter.java:46)at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:241)at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilt
We are running CF11. I am using Cold Fusion Report Builder. When I open a report in Report Builder I am able to run and modify the query for about 5 minutes. Then I get the Error Occurred message. How can I stop the RDS server from dropping me?
I have been asked to programme a method for importing data from xml files into our Coldfusion 8 website, I am new to using XML.My method had been working however I encounted the following error:Element NETWORKORDER.SECONDARYADDRESS.CONTACTNAME is undefined in MYDOC.On investigation the node in the XML file was not present.Is there a method I can use to resolve this error by checking if a node exists in the xml file, that works with my current code below?<!--- Read XML file ---><cffile action="read" file="D:\website\XML\#FileName#" variable="myxml"> <cfset mydoc = XmlParse(myxml)> <!--- Extract Data from NDS XML File ---> <cfset aPrimaryContactName=(#mydoc.NetworkOrder.PrimaryAddress.ContactName#)><cfset aPrimaryContactNumber=(#mydoc.NetworkOrder.PrimaryAddress.ContactNumber#)><cfset aPrimaryContactNumber= tostring(#mydoc.NetworkOrder.PrimaryAddress.ContactNumber#)><cfset aPrimaryContactAddressLine1=(#mydoc.NetworkOrder.PrimaryAd
Running CF 7 on Windows 2003 Server with IIS 6. Server is named usileng01.xyz.com. It has one IP address 135.5.17.25 and three web sites defined in IIS. All three are using the server's IP address on port 80.1) Default Web Site - Home directory in IIS points to C:\Inetpub\wwwroot2) itrac.web.xyz.com - has "Host header value" in IIS set to itrac.web.xyz.com. Home directory points to E:\iTracDocumentRoot. itrac.web.xyz.com is a DNS alias to usileng01.xyz.com.3) itdata.web.xyz.com - has "Host header value" in IIS set to itdata.web.xyz.com. Home directory points to E:\iTracDocumentRoot\IT. itdata.web.xyz.com is a DNS alias to usileng01.xyz.comAll three sites have anonymous access disabled and "Authenticated access" in IIS set to "Integrated Windows authentication" since PCs are logged into the AD domain.When accessing the web server via a DNS name (either usileng01.xyz.com, itrac.web.xyz.com, or itdata.web.xyz.com), the CFID and JSESSIONID change on ever
I've got a web app that allows users to save database results as a PDF file (I use cfdocument for this). There's also an option for them to select up to 20 records to PDF and zip (I use cfzip for this) but with almost 6000 records in the database, I don't want PDFs to pile up. It's easy to make the script delete the zipfile after download, but I'm trying to figure out a way to clean up the PDFs.One idea was to stick a unique identifier in the PDF filenames, then delete everything with a wildcard, but is there a better way?
I've installed coldfusion 2016. The administrator interface is ok, but when I open the web site I get the error 500. How can I risolve this problem? Thank you
I try to consume a webservice which lives on an iis-machine.I get this error message:-----------------------------------------------------------------------------------------------------------------------------------------------------errorCannot perform web service invocation suche.The fault returned when invoking the web service operation is:org.apache.axis2.AxisFault: Fehler beim Überprüfen der Sicherheit für die Nachricht. at org.apache.axis2.util.Utils.getInboundFaultFromMessageContext(Utils.java:531) at org.apache.axis2.description.OutInAxisOperationClient.handleResponse(OutInAxisOperation.java:375) at org.apache.axis2.description.OutInAxisOperationClient.send(OutInAxisOperation.java:421) at org.apache.axis2.description.OutInAxisOperationClient.executeImpl(OutInAxisOperation.java:229) at org.apache.axis2.client.OperationClient.execute(OperationClient.java:165) at org.tempuri
I have installed the Coldfusion 11 Standard Edition in Windows Server 2012 R2 with 2GB RAM and IIS 8.5. “Adobe ColdFusion Launcher Application” exe consumes more CPU memory in the process say around 86% and slows down or stops running the Application. The Application services goes down and URL throws Service unavailable error. Please help.
Hi. I just have a simple number range and I want to output the results. What I have outputs the results, but for some reason, it only displays the first result. Why does it not display the correct result? Here's what I have:<cfset X = 27><cfset Y = 37><cfif (#X# GT 35 LT 51 And #Y# GT 1 LT 35)><cfset Result = 200><cfelseif (#X# GT 1 LT 35 And #Y# GT 35 LT 51)><cfset Result = 300><cfelseif (#X# GT 35 LT 51 And #Y# GT 35 LT 51)><cfset Result = 100></cfif><cfoutput>#Result#</cfoutput>Since X is 27 and Y is 37 it should output 300 as the result, but it outputs 200. Why is this? What do I do to fix this? Thanks.Andy
Here's something I'd like to gain a better understanding of, because I'm looking for anything that will speed up my processes. I will try to describe and pseudo-code this as well as I can. Apologies in advance if anything is unclear.I have a CFC that is instantiated and utilized in two different ways. In the first way, the object is created, and a method within it is immediately invoked inline, which initializes some properties within that object, and finally returns This. The transient local object reference is then used to invoke other methods within it, and then it's abandoned as the request runs it normal course.myLocalObject = CreateObject("component", "myCFC").setStuff(theseArgs);if (myLocalObject.checkStuff(thoseArgs)) myLocalStruct = myLocalObject.makeStruct();In the second way, the object is created blindly, and the object reference is stored in a property of the calling CFC. Later, that stored object reference is used to invoke the same setStuff() method, bu
I believe I found a bug in CF11 with DateTime comparisons when dealing with UTC converted values going through serializeJSON then deserializeJSON. I did modify the code to not include the local2utc conversion and that seemed to produce correct results. Can someone please confirm: <cfscript> variables.dttm = createDateTime(2016,04,03,17,53,0); variables.dttmutc = dateConvert('local2utc',variables.dttm); variables.base = {}; variables.base.dttmutc_min = dateConvert('local2utc',dateAdd('h',-1,variables.dttm)); variables.base.dttmutc_max = dateConvert('local2utc',dateAdd('n',1,variables.dttm)); variables.viajson = deserializeJSON(serializeJSON(variables.base)); variables.viajson.dttmutc_min = parseDateTime(variables.viajson.dttmutc_min); // to me this parsing should not be required variables.viajson.dttmutc_max = parseDateTime(variables.viajson.dttmutc_max); // same </cfscript> <cfoutput> <h1>base<
Hi,Can anyone tell me please why this:<cfquery name = "check" datasource="ds">SELECT Date FROM tbl</cfquery><cfset check.Date = DateFormat(check.Date, "short")>results in the check.Date changing on versions before CF 2016 but not in CF 2016?thanks.
So, while I do use ColdFusion at work, I also use it on my personal website, where I host a blog and photo gallery.Whenever I click on a post or a gallery pic, I notice that the URL is appended with some sort of token. For instance, this:http://mysite/post/2224 becomes this:http://mysite/post/2224#.VmKaAipG_0It makes for some pretty ugly URL strings when I want to paste something to someone.My host uses CF9 (I think) and Linux. Is there an obvious reason it does this? I'm using session management and client cookies in Application.cfc, so maybe that has something to do with it.
if someone types a url into a form field and it goes into a mysql database. how do i get it to display as an active link on the display page.
The checkbox component right out of the box is showing up as a push button. Can I fix this?
Hi All.I have written a full application that works great using chrome http://localhost:8600/<appname>/When i build to phone gap i got the errorAndroid net::err_file_not_found (file:///android_asset/www/xxxxxx.cfmSo i thought oh dam, what stuff did i mess up. This is my 1st App.So i thought lets go back to basic.So i created a new project.I only created 2 pages index.cfm and test1.cfmindex.cfm <html> <head> </head> <a href="./test1.cfm">test</a> </html> test1.cfm <html> <head> </head> <a href="./index.cfm">index</a> </html> Then i built the app.downloaded APKinstalled on samsung note 3 aswell as samsung note 10.1When i run the app. i see the hyperlink i click(touch) on test 1.I then get the following error then app closesCfbuilder Android net::err_file_not_f
I am following these instructions for creating/exporting a j2ee archive (WAR or EAR) for coldfusion 9. http://help.adobe.com/en_US/ColdFusion/9.0/Admin/WSc3ff6d0ea77859461172e0811cbf364104-7fd1.htmlHowever, after selecting my settings, there is a "Submit" and a "Cancel" button. There is no "Create" button. I do not see a .WAR file anywhere on my server, although it has created a directory structure with some xml files, etc. I was expecting just a WAR file. Any help/idea? Thanks. Doing a migration from 9 to 11.
I create a cfc which has one method and want to access from cfm file using jQuery.it seems that jQuery does not recognize the component,\I remember that I can check if this component and method is accessible from my browser, but I do not remember how.Your help and information is great appreciated,Regards,Sourises,
I'll make a migration but I find myself coldfusion indesiso between 11 and 12
Hi,Need advise on the correct licensing for my server below:Server 1: 4 Virtual CoreServer 2: 2 Virtual CoreThanks,
I am using the cfimage tag with action="captcha" and text="someText". SomeText is replaced with a random string between 4 & 7 characters. Sometimes when the captcha is displayed it doesn't show all the characters that was passed in the text argument. For testing I display the text that is passed into the cfimage tage above the captcha box so I know what should be displayed. I also tried putting in static text like the word test and there were times it didn't display all 4 letters.I am using Coldfusion 11Any ideas?
I really do not understand this problem. I am relatively new to both tomcat and coldfusion, but I have followed basic instructions.Deploying on Tomcat 7.0.68 and Java 1.8.0.77. This is on CentOS 6.7Coldfusion install log says no errors, 8890 successes. Tomcat at localhost:8080 looks good. Using the JEE WAR file deployment, 30 day trial, production server. I modified Tomcat's web.xml to allow for a 500MB deployment, since the Coldfusion WAR file is almost 300 MB. I will past my Catalina.out file here, since it seems the most relevant. And I really appreciate any help someone can offer. Mar 29, 2016 10:03:29 AM org.apache.catalina.startup.VersionLoggerListener log INFO: Server version: Apache Tomcat/7.0.68 Mar 29, 2016 10:03:29 AM org.apache.catalina.startup.VersionLoggerListener log INFO: Server built: Feb 8 2016 20:25:54 UTC Mar 29, 2016 10:03:29 AM org.apache.catalina.startup.VersionLoggerL
Hello,I need to create a rather long list of checkboxes for a user to fill out. I have created a database table with each checkbox item stored as a row, and using a cfquery I can select them from the database and add them to a form as such:<form action="postact.cfm" method="post"> <cfoutput query="getquestions"> <input type="checkbox" name=#getquestions.shortname#>#getquestions.longname#<br> </cfoutput> <input type="submit" value="Submit"></form>The problem is when I try to reference these items on the following page.Instead of naming each one individually, I was hoping to use another query to pull the name of the checkbox, and be able to reference it.Problem seems to be that I can't reference them a
Hi everyone. My company has been hit with 3 viruses in the last few months and we think it's because of some attachments employees are clicking on and opening. We have a quote page on our web site form that allows users to attach files that get sent to our quote email address. The form does not prevent certain attachments from being uploaded and attached and sent to the email though. Does anyone know how to prevent certain file extension attachments to not be allowed to be sent from a form in Cold Fusion? I would probably want to prevent .exe, .zip, etc. files for sure. Thanks.Andy
Remix with Firefly Community Gallery
Thousands of free creations to fall in love with and remix in Firefly.
Vous avez déjà un compte d'utilisateur ? Connexion
Pas encore de compte ? Créer un compte
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.