The official community for ColdFusion.
Recently active
HiWhen I open CFBuilder 3 I get the following error for all of the files that were open when I closed the app:No editor descriptor for id org.eclipse.ui.internal.emptyEditorTabI have to close the tab and open the file again. Has anyone else seen this behavior?Thanks,Rich
Hi, We want to move our website to a new host, we buy the license like 4 or 5 years ago.The current version of ColdFusion is: 10,0,0,282462. we want to know if we migrate to the new server, can we still use the old license or do we need to buy a new one, another thing is can we still use the version 10 or do we need to update it the latest one.If we can using the old license please tell me how. Thx
Hi,I am facing issue with <cfhttpparam> tag.<cfhttpparam type="URL" name="auth_token" value="#strJsonData.result.authToken#" encoded="false" />Here the value send strips new line because of which on the other end i am not able to fetch data w.r.t that valueThanks and RegardsVikrantraje
Hi ,I am trying to send data from one cfm page to other..I used scopes but still didn't succeedPlease helpThanks and RegardsVikrantraje
I can check whether a query results contains any record count or not in any of the following ways.1 <cfif myQueryObject.recordCount> ---- some logic ---- </cfif>2 <cfif myQueryObject.recordCount GT 0> ---- some logic ---- </cfif>Can any one guide me saying which one will provide a better performance.Your timely help is well appreciated.
Could anyone help?Javascript fixMe() work properly in IE but not work in Chrome.Sample script<SCRIPT language="JavaScript"><!--function showErrorMessage(form, ctrl, value, message){ alert("The value " + value + " of the " + ctrl + " field " + message);} function initGrid() {ColdFusion.Grid.getGridObject('printpayment_grid').getSelectionModel().singleSelect = false;}function fixMe() { obj = ColdFusion.Grid.getSelectedRows('printpayment_grid'); var selected1 = ""; for(var i=0; i<obj.length; i++) { if(selected1 == "") selected1 = obj.C_VENDOR_NAME_PR; else selected1 += "," + obj.C_VENDOR_NAME_PR; } document.getElementById('selected1').value = selected1; return true;} \\--></SCRIPT>
Trying to set up a DSN for a SQL Server database on a new computer and it's failing every time.Connection verification failed for data source: csfjava.sql.SQLNonTransientConnectionException: [Macromedia][SQLServer JDBC Driver]Error establishing socket to host and port: SANDYPC:1433. Reason: Connection refused: connectThe root cause was that: java.sql.SQLNonTransientConnectionException: [Macromedia][SQLServer JDBC Driver]Error establishing socket to host and port: SANDYPC:1433. Reason: Connection refused: connectNow, when I installed CF 11, it installed on port 8500. However, when I try changing the port in the setup to 8500, I get this error:Connection verification failed for data source: csf java.sql.SQLException: Timed out trying to establish connection The root cause was that: java.sql.SQLException: Timed out trying to establish connectionI cannot find anything online on how to fix this! HELP!!!
I'm receiving the following error when I try to add a DSN: The ColdFusion ODBC Server service is not running or has not been installedIn trying to resolve that error, I discovered that other than ColdFusion 10 Application Server, there are literally no ColdFusion services listed -- running, stopped, or otherwise. 1: Is this normal? 2: How do I install, start or register those services? Clearly they're needed.
I'm new to Cold Fusion Reports. I'm familiar with Crystal Reports. I need to perform a distinct count of one of the fields in the report and display it on the report. But I can't find that function anywhere. I've been looking for cold fusion report builder texts and web sites with no luck. Can anybody help me with this? Or point me to a good resource for building reports with Cold Fusion Report Builder?
We have a new install windows server 2012 R2 with a new install CF11 standard installed on C drive. Everything is 64bit. The CF administrator site and login works fine. cfm files will not serve up in the default directory, but IIS shows htm files fine. CF administrator runs fine.Web Server Config tool will only show "None" in the IIS Web Site box. The usual CGI, APS, etc have been installed on IIS. In fact IIS and CF11 have been reinstalled. wsconfig.exe manual run shows no errors.The problem is that any call to a cfm template results in an error (html pages serve fine):HTTP Error 500.0 - Internal Server ErrorThe page cannot be displayed because an internal server error has occurred.Detailed Error Information:Module IsapiModuleNotification ExecuteRequestHandlerHandler cfmHandlerError Code 0x8007007fRequested URL&nb
hi i am using coldfusion 11 and i used steralize json function to convert query to JSOn.[{"SERVER_ID":53,"NAME":"kirantest222","TYPE_ID":1,"UPDATED_NAME":null}]when i am trying to read in jquery , error is happening.could some one please give me some hint how to read this type of data in jquery?Thanks
For the first time I'm using CFFORMGROUP and it is the perfect solution to my many forms for users to fill in. Using cfformgroup I created 4 tabs and each has a form with its required fields. The problem is, when I tested the pop up window without filling in all the required form fields, the pop up window freeze up my screen. There nothing I can do but log out and log back in. When clicking the submit button, the pop up windows shows all the required fields from all four tabs instead of showing just the required fields from one selected tab. Maybe there are too many to show at once? is this a bug or I did it wrong? I googled and can't find too many posting about <cfform name="TestForm" method="post" action="TEST.CFM" width="650" height="820" format="Flash"> <cfformgroup type="tabnavigator" style="marginTop:0; background-color:##EFEFEF;"> <cfformgroup type="page" label="Registration 1"> <cfoutput query="RegDetails"> <cfinclude emplate="
Just a heads up, I am a network guy posting for one of our developers who is too busy to take this on himself.We were running a CF 9 production application and recently updated to CF 11. There are a few QoQ's that are now broken since the update.I am not going to pretend like I know what I am talking about, but in CF 9, the following query returns the correct results, Toyota and Honda. In CF 11, it does not and we think its because the "TYT" and "HND" have trailing spaces. <cfset list=queryNew("code,description","varchar,varchar")> <cfset queryAddRow(list)> <cfset querySetCell(list,"code","TYT ")> <cfset querySetCell(list,"description","Toyota")> <cfset queryAddRow(list)> <cfset querySetCell(list,"code","HND ")> <cfset querySetCell(list,"description","Honda")> <cfset queryAddRow(list)> <cfset querySetCell(list,"code","HMMR ")> <cfset querySetCell(list,"description","Hummer")> <cfset queryAddRow(list)> <cfset query
I am seeing intermittant instances where URL variables are being changed from what was actually passed in, and I cannot determine how/where/why it's happening.The entire process is to send email with encoded URL's that point back to a server which decodes the URL and redirects the user to the intended web page by using cflocation. The destination is determined through the coding in the URL and has 4 url vars, 2 of which are static.oid= a static 3 digit valuetag = a static random length alphanumeric, generally 8 characters or lessuid = dynamically assigned before the redirec, alphanumeric 13-24 characterssid = dynamically assigned before the redirect, alphanumeric 24 charactersWhat I can say about the mangling is that when a value is only alpha it is being rot13'd (characters are being changed to the 13th next character in the alphabet, starting at A after Z). When it's numeric it has additional numbers appended, and when it's mixed alpha and numeric both are happening but I
I have a report that groups by program code. The values in program code are Undergrad, UndergradTr, UndergradIntl.I want the Undergrad in one group and all the rest in a different group.Any thoughts?
Is there a way to passed data calculated in a subreport back to the main report?
Hi-I want to print my reports Horizontally rather vertically using Coldfusion Report Builder. I am using a very simple querySELECT Zones.Zone_id, Zones.Zone_name, Count(employees.cnic) as Employees FROM Zones, Employees WHERE Zones.zone_id=Employees.zone_id GROUP BY Zones.zone_nameOr say Daily/Monthly Zone Sale with Zones in Rows and Dates/Months in ColumnsThanksTayyab Hussain
Hi-Coldfusion Report Builder by default displays result vertically, say, somthing like this:Zone_IDZone_NameNo. of Emplyees1A472B653C1004D32But I want to disply the results HorizontallyZonesABCDNo of Employees476510032Any Ideas how to do so??Thanks
Got an old Java class that was written for CFMX7 and can't get it working in CF10...The class file is WavFileConverter.class (and is in /home/cfx)I've never had it in a .jar as far as I know, when using it with CFMX7.Now when I try to instantiate it, I get:WavFileConverter (wrong name: com/dml/coldfusion/tags/WavFileConverter)The settings in CFAdmin are:Tag Name: CFX_WavFileConverterClass Name: WavFileConverterAnd I have set ColdFusion Class Path of /home/cfx Any suggestions? It's been a long time since I did much CF!
I have a question (actually two) about how caching works with cfquery so I can make sure that what I'm doing on our website makes sense. (We're on CF10)I have a database that stores certain details about each of the web pages on our site. Contact ID, title, date added/updated, whether it's a recent or featured item, etc. The unique identifier for each page is the path (/folder/subfolder/page.cfm). Since out site is organized in several major topic areas, there's a column to identify which topic the page is in (and that's the same as the folder name that set of pages resides in).Some or topics get tons of hits, and some get very few, so I've been doing this: <cfquery name="getalltopics" datasource="dsn" cachedwithin="#createtimespan(0,1,0,0)#"> SELECT (columns I need FROM pages WHERE topic = <cfqueryparam value="#topicname#" cfsqltype="cf_sql_varchar"> </cfquery> <cfquery name="getpagedetails" dbtype="query"> SELECT (columns I need) FROM
CF beginner.When transferring from flash to HTML format, is there a way to control attributes which are not accessible through tags (for example HSCROLL and WIDTH in CFTREE)? Seems like going modifying the Ext JS object is the only way (for example using ColdFusion.Grid.getGridObject) as described in CFML reference but this apparently only works for editable objects. Is this the correct approach? Are there other ways of doing this? staying with a non-HTML format is not an option and so any help is greatly appreciatedDisclaimer: just starting with CF and haven't had a chance to try these things in practice.
I have been trying numerous ways to install CFBuilder 3 Trial into Eclipse 4.2.2 on Mac (Yosemite) and just cannot get CFBuilder to load the CF Perspective. I have tried in various Eclipse versions, and in multiple orders including just installing CFBuilder Trial Edition without in a clean 4.2.2 Eclipse from clean CF install (plugin only, but tried also installing full CFBuilder app both before and after plugin installation, rebooting between each install) and new workspace. My ultimate goal is to also install Flash Builder 4.7 into the same Eclipse app, but am starting with CFBuilder since Flash Builder installs successfully. Note that this question is ONLY for the ColdFusion Builder 3 installation alone without Flash Builder installed on the machine.Bottom line: I just cannot get CFBuilder 3 to load into Eclipse 4.2.2 and show the CF Perspective even though it appears to be a successful plugin install; I am starting Eclipse either from both the plugin directory's shortcut and from th
We are not having any issues but other applications on the server need to work on SQL management 2008 or greater platform. So we are trying to find out if we have to upgrade our CF 8 to a newer version or not. Currently, our current setup is working fine.
I am trying to install both Flash Builder (FB) 4.7 and ColdFusion Builder (CFB) 3 into the same IDE and cannot seem to be able to do so successfully. The environment is Mac OSX Yosemite.I have tried installing CFB as a plugin into FB (can't, FB uses Eclipse 4.3), FB as a plugin into CFB (succeeds but FB does not show up as a perspective even though it seems to install successfully), and each as a plugin into Eclipse stand-alone 4.2.2 (last one installed does not show up). Now, my "uninstall" for CFB is hosed - hangs at 32% - i think some original paths written to the uninstall directories are no longer there or something.Is there a trick to getting FB and CFB 3 to work together on Mac Yosemite?
Getting an error on a CF 11 Enterpirse Server Administrator on Win2008 64bit when going to Server Update - UpdatesElement UPDATESETTINGS.UPDATESERVICE is undefined in a Java object of type class [Ljava.lang.String; referenced as '' The error occurred in index.cfm: line 103Called from index.cfm: line 52Called from index.cfm: line 51Called from index.cfm: line 1-1 : Unable to display error's location in a CFML template. Also, in the top frame of the admin contol panel there are no resources|info|?| logout links and there is an error in the source code: &#x9;at cftopnav2ecfm1029300467.runPage&#x28;&#x2f;CFIDE&#x2f;administrator&#x2f;topnav.cfm&#x3a;241&#x29; <br /> <br /> <pre>java.lang.NullPointerExceptionat coldfusion.server.UpdateService.init(UpdateService.java:132)at coldfusion.server.UpdateService.&lt;init&gt;(UpdateService.java:123)at coldfusion.server.UpdateService.getInstance(UpdateSe
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.