The official community for ColdFusion.
Nyligen aktiv
Server Setup:-Windows Server 2008-IIS 7-Coldfusion 10We have developed a Coldfusion REST service.This service works when files are uploaded to the server and the Coldfusion REST service is restarted/refreshed. I test the end points and they all work.The first thing next day, I test the end points and they do not work. The return is “Status 500 - The page … can not be displayed.”I do not believe this to be a IIS problem/issue. If the files are re-uploaded and the REST service is once again restarted/refreshed the end points will start to work again. Funny thing is, just refreshing the REST service will not make the end points start working… the files must be re-uploaded first.Has anyone experienced this?Does anyone have any suggestions?***I have a feeling that the virus scanner on the server may be the cause of the REST services going unresponsive over the course of the night.Are there certain directories that should not be scanned by a virus scanner?When the REST services are compiled(
My ColdFusion 10 service stopped loading a few days ago. It coincided with both a windows update and a java update (to 8). I don't know what the issue is, but I have uninstalled the java update and uninstalled CF10. I reinstalled CF10 and am now getting this error message when the service will not start:Here are the hs_err_pid5652 log contents.## A fatal error has been detected by the Java Runtime Environment:## Internal Error (os_windows_x86.cpp:149), pid=5652, tid=1348# guarantee(result == EXCEPTION_CONTINUE_EXECUTION) failed: Unexpected result from topLevelExceptionFilter## JRE version: 7.0_15-b03# Java VM: Java HotSpot(TM) 64-Bit Server VM (23.7-b01 mixed mode windows-amd64 compressed oops)# Failed to write core dump. Minidumps are not enabled by default on client versions of Windows## If you would like to submit a bug report, please visit:# http://bugreport.sun.com/bugreport/crash.jsp#--------------- T H R E A D ---------------
I have a server with an installation of ColdFusion 10 however the ODBC Services did not get installed with the initial installation. Is there a simple, manual method for installing ODBC Services without uninstalling CF and then reinstalling with that option selected? I have tried running the installation over the current one but with the Configure Installer window, it has Server Configuration greyed out as it has found a current installation. It then gives an option of either EAR file or WAR file in the JEE configuration. Not sure which to choose so that's why I ask the question of a manual install.Thanks in advance. This is running on a Windows Server 2008 R2 64-bit box.Dave
Hello everyone, I'm trying to fix my cfchart in CF11 to look some similar like in previous CF9. I converted my .xml files and instead I use JSON to style my elements. Problem that I can not fix is cfchartseries. My data that i'm passing in my chartseries looks good, I tried to output everything on the screen before I tested my chart. In CF9 my Time records were displayed on the screen from the first value all the way up to the last value. Here is my screen shot of my chart in CF9:As you can see on the picture above all my time slots are displayed on the screen in order from the lowest to the highest. Also my record for 2015 is displayed with the bar in blue color, 2016 in pink color. Now I will show you my chart with the exact same code in CF11: You can see thatmy chart in CF11 starts with the blue bar that present year 2015 and time slot that should not be on the first spot 1415. Also my other time slots are not displayed on the screen. I have tried so hard to get this done but still
Hi,I just installed CF 11 Developer - on Mac Yosemite. I am not having trouble starting the serverMAIN GOAL: not to have server running all the time - just be able to manually start/stop the server when needed...I went to app>CF11>cfusion>bin >cf-standalone-startup and double clickedthis brought up terminal - I entered main user pass then it said:You must be the root user to configure the ColdFusion to start on System boot. Start ColdFusion as "sudo ./coldfusion start" to configure.Once it has been configured, start ColdFusion as "./coldfusion start" to run ColdFusion as non-root user.logoutQ: not sure how to do this part (not a command line guy) Can anyone help with how to proceed with this?
I'm using ColdFusion 10 with Paperthin's CommonSpot CMS. The hyperlink in each of the search result page is https://devbox.mysite.com/kb/article/?title=test-article and the URLRewrite should show https://devbox.mysite.com/kb/article/test-article on the client's browser instead. Below is the URL Rewrite. <rule name="KB-rewrite" enabled="true"> <match url="^kb/article/([a-zA-Z0-9\-]+)$" /> <conditions logicalGrouping="MatchAll" trackAllCaptures="false"> <add input="{QUERY_STRING}" pattern="1" negate="true" /> </conditions> <action type="Rewrite" url="kb/article/?title={R:1}" appendQueryString="false" /> </rule> I know that the URL Rewrite rule works because if I removed the "?title-" from the URL, it loads the article fine. The question is, why is it showing ?titlte= in the URL when without it, it would still works? What could have caused this behavior
I am trying to load Cf10 on a virual machine and my sys admin wants an ISO file.I have not been able to find one.Any ideas or am i chasiing a ghost?
Is there a specific way to open and read a json file other than using cfhttp tag?
I can't seem to determine the cause of the ClassCastException message I am getting from a web service I am calling with CF8. The message is returned from an internal WebLogic web service. For the most part it works fine but when I request something that the web service can't handle I get the ClassCastException message. I turned on SOAP logging to get the real cause of the problem but the CCE is messing up my exception handling. Any ideas what is causing this? Would upgrading to axis 1.4 help? Any help would be appreciated. Here's a portion of the stack trace: java.lang.ClassCastException: org.apache.axis.message.Text cannot be cast to org.apache.axis.message.MessageElement at org.apache.axis.message.SOAPFaultBuilder.onEndChild(SOAPFaultBuilder.java:299) at org.apache.axis.encoding.DeserializationContext.endElement(DeserializationContext.java:1090) at org.apache.xerces.parsers.AbstractSAXParser.endElement(Unknown Source) at org.apache.xerces.impl.XMLNSDocumentScannerImpl.scanEndEle
Where can I find a installer for windows coldfusion 7, "coldfusion-70-win.exe"?Trying to rebuild server, the only place I can find are these places that infect the install routines.I can't find anyplace on the adobe website, maybe there are hidden links?
「11.x」 よりも 最近出荷された 「2016」 の方が早いのはなぜですか?
how can I create an interactive form using PHP or using dreamweaver?
How to set up SAS as data source in Coldfusion?
I don't know much about ColdFusion yet. If I declare/cfset a variable inside a function, can I just access that variable directly from anywhere on the .CFM page?
Hello, all,I'm trying to troubleshoot an issue with the DBINFO tag, and I've never used it, before.Basically, we have a schema ("FC") that has many tables, one of which is called "F_COMMENTS". In CFAdmin, the DSN is named the same as the schema.I'm using the following: <cfdbinfo type="columns" table="F_COMMENTS" datasource="FC" name="dbdata" /> The error message states that table F_COMMENTS doesn't exist. But it does.What could be causing this erroneous message?V/r,^_^UPDATE: I did the following: <cfdbinfo type="tables" datasource="FC" name="dbdata" /> The CFDUMP of that does show that the table "F_COMMENTS" is in the datasource.
Hi there,Just recently I've got a problem with email attachments download with CF10 & 11. Attachmentfiles field is empty, but attachments one contains file name. Code was working fine before. I am sending emails from Outlook 2002 and web interface to GoDaddy and BlueHost mail servers. Code is: <cfpop server="#POPServer#" port="#POPPort#" username="#POPUser#" password="#POPPass#" action="getall" uid="#UID#" attachmentpath="#ExpandPath(EMAIL_FILE_DIR)#" generateuniquefilenames="yes" name="CurrEmail" debug="#debug#" timeout="600" />May be someone have any idea about this issue.Thank you,Anton
While I try to install CF 2016, there was nothing happened, instead of the application shutting down in a few second. Event log shows thatFaulting application name: javaw.exe, version: 8.0.720.15, time stamp: 0x567a1483Faulting module name: unknown, version: 0.0.0.0, time stamp: 0x00000000Exception code: 0xc0000005Fault offset: 0x0000000000000000Faulting process id: 0x1460Faulting application start time: 0x01d17615d1f9e21fFaulting application path: C:\Users\hb19943pa\AppData\Local\Temp\I1457096367\Windows\resource\jre\bin\javaw.exeFaulting module path: unknownReport Id: 11e1e3ff-e209-11e5-bf93-2c44fd638f1a
Hi everyone. I've setup my development environment to use IIS. I can use either local i.p.'s or localhost:8500 - (regular ColdFusion). I'm having an issue when calling any CFM file from my IIS and only in IIS. If I go to a folder that contains an index.cfm file it will render it fine. It's only when I actually type the index.cfm?fuseaction=xxx tht I have issues.The issue does not exist when I do the same inside localhost:800, so I know it is an IIS issue. Does anyone have any insight on this. I tried Googling, but none of the solutions really help me - as it does render when it is not typed - so all of the IsapiModule and CGI references appear to be in place.Thanks in advance.
I have a cfc that is exposed as a web service . However when a request from 2 different servers consume the webserice at the same time one request is dropped and the other processed. Im not sure why this happens and would really appreciate some insight Thanks!
Hi All,I am fairly new to the Adobe community though I have been the administrator for our CF10 Instances for a while and I update it every once in a while.I have been tasked by my management to seek out upgrading our CF10 environments to CF11. We do have a yearly maintenance contract in place with Adobe for ColdFusion. Do you know if the standard maintenance contract includes free upgrades or must we purchase new versions or is each contract "unique?"Also, the environments were upgraded from CF9 to CF10 a couple years back. When I upgrade to CF11, would I need to request a new serial number from Adobe through our software liason or would it accept our CF10 license and update it to the new one after I migrated the environment?Thanks in advance!Ben ComptonNational Security Technologies, LLCA contractor to the US Department of Energy
Hello Experts,Server Product : ColdFusionVersion : 10,0,18,296093(PreRelease)OS : UnixOS Version : 2.6.32-573.12.1.el6.x86_64Adobe Driver : 4.1 (Build 0001)So, we are having our CF server crash every now and then with 503 error. There is no particular pattern as to why this happens. There are two servers behind a load balancer..... We have a health check methodology that checks for a cfm page every 10 seconds. If it receives multiple 503's, users are switched over to another server.After a CF restart, things come backup normally. Following is the log file at the crash point for one instance.....Feb 17, 2016 14:17:52 PM Information [ajp-bio-8012-exec-12] - Using Axis 1 for consuming the service xxxxxxxxxxxxxxxxxxxxxxxFeb
Got a bit of a legacy app that previously had flushAtRequestEnd set to true. We've flipped the flag, and now our many-to-many relationships aren't working properly. The individual records save fine, BUT the link table records are not being created. Here's how the entities are basically set up.component persistent="true" table="Encounters" {... property name="CaseFollowUps" singularname="CaseFollowUp" fieldtype="many-to-many" cfc="FollowUp_NEW" linktable="EncounterFollowUp" fkcolumn="EncounterID" inversejoincolumn="FollowUpID";.... public void function addCaseFollowUp( fu ) { ArrayAppend( variables.Ca
I'm comparing values in a session variable that are in comma separated to local JSON values. What is the best way to read the comma separated value from the session.groups variable?
Hi,I'm a more than 15 years CF developper and I enjoyed it.Now I have a large application that I have to translate to php and php is quite new for me 😞My app uses quite a few Custom Tags and I'm looking to the easiest way to simulate them.Has anyone already get into this and is willing to share ?
Hi,I've encountered an issue where I am puzzled by coldfusion's output. Is this a bug, or the design?<cfset x="meow"><textarea><cfoutput>< #x#</cfoutput></textarea><br><textarea><cfoutput>< meow</cfoutput></textarea><br><textarea><cfoutput>x #x#</cfoutput></textarea><br><textarea><cfoutput>x meow</cfoutput></textarea><br>In the above, I expect the output to be :<[space]meow<[space]meowx[space]meowx[space]meowBut the result I am getting is : <meow<[space]meowx[space]meowx[space]meowWhere the variable output in the sequence of <[space][variable] promptly cuts off my space. If it is whitespace management kicking into affect, the 4th output should have spaces removed as well but that is not the case. Changing whitespace management gives the same result. Please help .... This looks like a bug? Or is it supposed to be like this? Of course I could
Remix with Firefly Community Gallery
Thousands of free creations to fall in love with and remix in Firefly.
Har redan ett konto? Logga in
Har du inget konto än? Skapa ett konto
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.