The official community for ColdFusion.
Recently active
Do the Tomcat Connectors get upgraded automatically with the update install from the admin console or is it required to remove all connectors and recompile them post update install? ThanksJLW
This is a somewhat technical question. I have recorded a bunch of HTTP traffic to my CF application doing actions that I would like to replay at a later time for testing purposes. These recordings involve a user logging into the application followed by the user performing a bunch of actions. In order to replay this traffic accurately I have set up the replayed traffic to adjust its cookies to maintain the session since the session used during the recording will be expired by then.This approach works fine for 1 client or so, but when I start scaling this up to many clients it starts to fail intermittently. Debugging the replay clients that are failing, I see that the server is generating a new JSESSIONID cookie for each response even though I am sending the proper cookie in the request. On the other hand, for a replay client that works correctly, I see the JSESSIONID cookie staying the same for the entire session. After a while of running many clients using this method the CF server see
Hello,Office 365 can be used with ColdFusion Server, below are the proper Office 365 Mail Server settings, you can use these attribute's value as per your office365 authentication:--Mail Server- smtp.office365.comUsername- abc@xyz.com Pwd- UserPasswordPort- 587Checked "Enable TLS connection to mail server"-Regards,Kaif Akbar
Hello, can someone help me with the Cold Fusion admin settings to allow mail to be sent using Office 365?Thanks,Renee
The form works on all the other machines in the office but not this one windows 8 machine. There is no cursor and you can not neter any text. Any ideas?
It seems that whenever we receive 3 or more requests, JRUN pegs the processor and the system crawls extremely slow. Even after the requests complete, JRun doesn't seem to release its resources and the system continues to crawl until the CF service is restarted. All the Request Limits are set to 10 and the JRun master request limits are 50 for running and 1000 for queued. This is CF 9 Enterprise running on a Windows Server Standard machine with 4GB RAM, dual processor, and 32-bit OS.Any thoughts are appreciated.ThanksDave
Hello,This issue occurred twice this week. Our CF application server suddenly stopped. When I checked the Event Viewer log, here are the errors I found:The description for Event ID 263 from source ColdFusion 10 Application Server cannot be found. Either the component that raises this event is not installed on your local computer or the installation is corrupted. You can install or repair the component on the local computer.If the event originated on another computer, the display information had to be saved with the event.The following information was included with the event: ColdFusion 10 Application Server1432The description for Event ID 261 from source ColdFusion 10 Application Server cannot be found. Either the component that raises this event is not installed on your local computer or the installation is corrupted. You can install or repair the component on the local computer.If the event originated on another computer, the display information had to be saved with the event.The fol
Hi,I have installed 10 cold fusion and my application is made in flex 3.5 and my data is in a data base oracle But my application can not populate my combo box. So I appear to select [object Object].What's wrong?
Hello, everyone,I've got a confusing bit happening, right now.I'm using SpreadsheetNew() to generate an Excel report AFTER a page with the exact same data is loaded. (Basically, the data appears, then the page can be resubmit to generate the Excel.. and it's not like the data in the database changing would have an effect - I'm serializing the data to JSON, posting it, then deserializing it back into a query object.)I've got numbers that appear like "1728074" and I'm dividing them by 12 (to get 144006.1666666667) and using NumberFormat on the display page and it's working just fine.Trying to replicate the same math and logic for the page that creates the Excel spreadsheet. The same logic is giving me the same full number (144006.1666666667), but when I apply NumberFormat() (with or without a mask) to that value, it's as if the value is being divided by 1000! So, instead of getting 144006, it's giving me 144. That's it.I'm not applying cell formatting prior to the
ZDNet announces there is a security hotfix for ColdFusion but provides no link to where I can read about it or download it. I go to the Adobe site and look for it by browsing and searching and can't find it. It's been hidden well.Maybe the ZDNet announcement was made prior to Adobe updating their website? Or maybe I just can't find what is obvious for others.
Receiving errors about Cold Fusion in the Event Log. CF10 is not able to run any scheduled tasks we have set up and so are troubleshooting. Keep getting the following two errors when I restart the service but am receiving no information from the error. The description for Event ID 3 from source ColdFusion 10 Application Server cannot be found. Either the component that raises this event is not installed on your local computer or the installation is corrupted. You can install or repair the component on the local computer.If the event originated on another computer, the display information had to be saved with the event.The following information was included with the event: ColdFusion 10 Application Server936The description for Event ID 4 from source ColdFusion 10 Application Server cannot be found. Either the component that raises this event is not installed on your local computer or the installation is corrupted. You can install or repair the component on the local computer.If the even
I am trying to send mail using ColdFusion (8) and Office 365, but I'm not sure what username to use in either the Mail Settings in CF Administrator or using a regular CFMail tag. Any help is much appreciated!
Is CF 10 supported by Windows Server 2012 R2?Dave
When writing a tag-based function, I can say <cfargument name="componentArray" type="component[]" required="true">.How do I do the same thing in script?public void function someFunction(required component[] componentArray) {} gives me a syntax error in CFBuilder, so I expect that won't work.
We have a Google premier license and use it to create maps displaying markers defined by database lat/long values. I want to include one of the JS API generated maps inside a PDF we create using cfsavecontent and cfdocument. However, the map canvas is always blank when viewed inside the resulting PDF. Is there any reliable way to do the cfdocument step *after* the map has loaded on the user's screen or save the map canvas to our server as an image so we can include it in the cfdocument?Many thanks for any assistance provided.
I'm using the cfdirectory example code right of Adobe's site yet in CF11 I can only get it to show the folders in the directory and not any of the files. Is it possibly a security setting in CF11?The code is pretty basic:<cfdirectory directory="D:/IIS" name="dirQuery" action="LIST"><!--- Get an array of directory names. ---><cfset dirsArray=arraynew(1)><cfset i=1><cfloop query="dirQuery"><cfif dirQuery.type IS "dir"> <cfset dirsArray=dirQuery.name> <cfset i = i + 1></cfif></cfloop><cfdump var="#dirsArray#"><br><!--- Get all directory information in a query of queries.---><cfquery dbtype="query" name="dirsOnly">SELECT * FROM dirQueryWHERE TYPE='Dir'</cfquery><cfdump var="#dirsOnly#"Thanks!Gary
I need to be able to set a date in the application.cfm file for example<CFSET APPLICATION.stopdate='10/15/2014'>Then in my site on other pages I have code that says<cfif reportdate GT #APPLICATION.stopdate#>Do This</cfif>The problem is sometimes I need to change the APPLICATION.stopdate to another date during the middle of the day.For example I need to change the APPLICATION.stopdate from 10/15/2014 to 10/25/2014However I notice when I change the APPLICATION.stopdate in the application.cfm to another date during the middle of the day that the APPLICATION.stopdate stays the old date.How do I make sure that the APPLICATION.stopdate changes sitewide when I change it in the application.cfm?Do I use another variable scope?
Hi, I am trying to combine a bar and line chart ti display data. Everything looks good except that the yaxis scale is off. I set the scaleMin to 0 but that doesn't help. Below is my code, the custom XML style and a screen shot. My ultimate goal is to get the yaxis to start at 0, not -1,000 as is currently the case. I have combined this data with each set represented as bar charts and do not have this problem. It must be the combo of bar and line charts together. Any assistance is most appreciated.<cfchart title = "#variables.ReportName# Seedlings Ordered" style = "../SO_R_overall.xml" Format = "PNG" pieSliceStyle = "solid" show3D = "no" showBorder = "yes" showLegend = "yes" tipStyle = "MouseOver" chartHeight = "#DefinedChartHeight#" chartWidth = "#DefinedChartWidth#" &n
I am on a team developing and supporting a CF10 web application that is used on both desktop and mobile (iPad) platforms. I have a form with 2 CFSELECTs which are bound to CFCs.There are views for both the desktop and mobile version. They are virtually identical *except* for the mobile form fields are in <div> tags instead of an HTML table. They both use the same CFSELECT code:<cfoutput> <cfselect name="region" selected="#rc.region#" bind="cfc:applications.theApp.model.services.myApp.getRegions('#rc.DSN#',{district})" bindOnLoad="true"> </cfselect></cfoutput>The desktop version works as expected, the region options change based on the 'district' select box option,but the mobile version will not work on initial page load. Using Chrome to emulate the mobile version, I noticed in the console that cfajax.js does not load the first time the page is accessed. The CFSELECT form fields shows no options.But, if I F5 refresh the page, c
I'm just returning to programing a long dormant site of mine. In the past, I handcrafted an online editor, but now, I'd like something more sophisticated and am thinking about FCKeditor. Does anyone have experience with it? (Does this forum use FCKeditor?)A web search returned this link (FCKeditor 2.x/Developers Guide/Integration/ColdFusion - CKSource Docs) related to ColdFusion. Is this information up-to-date?
In WIndows Services, my cfintra instance is running. In CF Instance Manager, my cfintra instance is stopped, and I can't started via this page. In CF instance logs I get this: And visiting my website simply returns a 500 error. So I started the CF instance via CMD with: coldfusion.exe -start -console and now my website is running. However, the status of the instance in Windows Services is 'stopped' and if I close the CMD window it shuts down the CF instance. I have 4 CF instance that I'm managing via the instance manager and CFINTRA is the only one I can't start and stop successfully from the manager. So, how do I debug this issue?
I found a bunch of topics on this subject, but none seem to exactly be doing what is going on for me.I have a ColdFusion/Java routine that displays funding requests that need to be approved. When you click on the action button, you can either approve or disapprove. When the user presses the button, I get the error message via e-mail with a copy of the trace. It shows me the statement that isn't valid. I copy it and run it in SQL*Plus on my Production database. It returns the row expected. How can that be? Confused.Here is the trace [link]https://dl.dropboxusercontent.com/u/3594970/1244Err.txtOracle 11g on a Windows server
Hi,Here's what I'm trying to do: I have a build a report based on query results. In the query result, one field is a CLOB (which contains XML. The XML contains two tags - "description" and "count"). I want to read (&parse) the XML and store the "description" and "count" in a hashmap. But when I try to parse it, I end up in an error. I'm currently using XmlParse but I got an error "The markup following the root element should be well formed." I immediately used IsXml() to find out if the XML I am reading is well formed. And the answer is "NO".Could someone help me in converting it into a "well formed" one?(This is what I've tried: I appended "<?xml version="1.0" encoding="UTF-8"?>" to the XML I'm reading coz it was missing this. I later used XmlFormat to convert the XML into a string format. But IsXML tells me that even this is not well formed.)Thanks much for your help!
I have been trying to get an answer out of Adobe for months, but have gotten the runaround.Here's the question I've been asking. We have many licenses we need to upgrade before core support ends. If we don't get answers, we may be forced to use another vendor.I needed to clarify a finer point of the ColdFusion licensing for both v9 and v10.From the v10's license agreement (http://wwwimages.adobe.com/www.adobe.com/content/dam/Adobe/en/legal/licenses-terms/pdf/Adobe%20ColdFusion%C2%AE%2010.pdf 😞 1.5 “CPU” is each distinct central processing unit (physical or virtual) within the Computer capable of independently manipulating and operating the Software. Each CPU may contain one or multiple processing cores. The total number of cores operating the Software in the Computer may not exceed the licensed quantity, and will be greater of the exact number of cores operating the Software in the case when Licensee configures the Computer (using a reliable and verifiable means of hardware or
i am looking for an example of using cfscript to pass varibles into a query and NOT HARDCODED into the addParam value attribute.Sugesstions ?
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.