The official community for ColdFusion.
Recently active
CF11 cfgrid with binding not work like with CF10. Examplebind="cfc:focasaDBAccess.getInfo({cfgridpage},{cfgridpagesize},{cfgridsortcolumn},{cfgridsortdirection},{internet},{agentur})">This dont work. Only with one additional arguments. Either "internet" or "agentur". With CF10 this work with much more additional arguments.ThanksDetlefhow does cf11 cfgrid binding works with additional argumentsat least eight or more.Thanks for supportDetlef
We are making a cfhttp call.We are submitting xml data. We are able to send information from server A to server B, but server B is not giving us any response.Our code works for coldfusion 8 and 9 but it does not work for coldfusionh 10.This is the snippet of the code<cfhttp method="post" url="#httpURL#" timeout="3000" useragent="#CGI.http_user_agent#" > <cfhttpparam type="XML" value="#xmlRequest#" name="CLRCMRC_XML" ></cfhttp> The contents from server B can be access by<cfdump var="#cfhttp.FileContent#">.Note This works in coldfusion 8 and 9 but we are not getting any data from server B using coldfusion 10
Hi, I am new to coldfusion and looking for a way to debug. As far as I know there are free coldfusion extensions that used to do the trick. However I am not sure if they are currently available (I have coldfusion 10). If yes, please share the download link otherwise suggest some alternative for the same.Thanks in advance.
Hi AllI have a following field settings in solr schema<field name="<b>Exact_Word" omitPositions="true" termVectors="false" omitTermFreqAndPositions="true" compressed="true" type="string_ci" multiValued="false" indexed="true" stored="true" required="false" omitNorms="true"/><field name="Word" compressed="true" type="email_text_ptn" multiValued="false" indexed="true" stored="true" required="false" omitNorms="true"/><fieldtype name="string_ci" class="solr.TextField" sortMissingLast="true" omitNorms="true"><analyzer><tokenizer class="solr.KeywordTokenizerFactory"/><filter class="solr.LowerCaseFilterFactory"/></analyzer></fieldtype><copyField source="Word" dest="Exact_Word"/>As you can see Exact_Word has the KeywordTokenizerFactory and that should treat the string as it is.Following is my responseHeader. As you can see I am searching my string only in the filed Exact_Word and expecting it to return the Word field and the score"resp
We are currently running CF 9.0.1 on Server 2003 and are looking at migrating our sites to a new server running Windows Server 2012 64-bit and I've been trying to find compatibility information. So far all I've been able to find is this article https://forums.adobe.com/discussion/create.jspa#trigger_modal listing known issues with ColdFusion on 64-bit operating systems. Can anyone point me at documentation that would specifically show whether CF 9.0.1 is supported on Server 2012?More to the point, I'd be interested in hearing from anyone who is actually running ColdFusion 9 (or any other version) on Server 2012 who could provide suggestions and potential issues to watch out for. Thanks in advance, Ray
We are having an issue with a scheduled task being deleted when the ColdFusion 10 Application Server is restarted. We can set the task up again and it works fine until the Server is restarted. After the restart the task is gone.Any thoughts on this issue would be appreciated.Thanks
On my windows server 2012, I have installed IIS (8.0), then; I attempted to install coldfusion 11. I am getting the following error:Cannot configure IIS Connector. Enable the required options ASP.NET, CGI, ISAPI Extensions and ISAPI Filters in IIS under Windows Features and try again.Has anyone gotten through this yet and can step me through.I have been through server manager IIS and added ASP.NET 4.5 but I cannot find where to make the CGI, ISAPID changes at.Everything I google is finding win 2008 and coldfusion 10, I attempt to follow those steps but they don't necessarily match 2012.Any help would be appreciated as I am new to installing this software.
How do I connect to Exchange 2013 using CF10? We are upgrading our mailservers to 2013, but I cannot find a way to connect to the new server. Is there a setting that has to be changed on either server?
Hi, new to CFB and I'm have a difficult time trying to import a project from an existing code directory.I've tried the following>> import > other > existing project as new project When I do this, it creates a folder in my default workspace directory but none of my code is there. and it won't let me edit the project file location. the edit option in the resources is greyed out.>> File view > go to location > right click > promote to projectSame issue as aboveI've searched around and tried other suggestions but they all seem to say what I tried above. I've been using DW for a long time so, maybe its obvious and I'm just missing it? or should be thinking about this differently? Basically, CF is installed with IIS, code is on a location of my hd, IIS points to each folder, I use tortoise svn to check in and out, edit code in DW, and test in browser. Should I instead, install CFB with built in CF, create a project and check out code from svn, run everything from C
Hi ColdFusion community. Some of my users do not have flash add-on installed in Internet Explorer so when they open a page that uses cffileupload, they get a bad looking red cross and a gray border (see below).How can I present a nice message when this happens? Something like " Adobe Flash is required for this page to work properly. Get it from...."Thank you!
CFFILEUPLOAD is returning the cffile.clientfile which is the original file name instead of the cffile.serverfile the new unique file name when the posting script was instructed to make the file unique when there is a name conflict.Is there a way to instruct the CFFILEUPLOAD tag to return the new unique file name?
I have an application.cfc. page that will display a header and footer on each page that is produced and viewed what i you like to do is to show a different header and footer on select webpages on the same site.Here's my code:<cfcomponent output="false"><cfset this.datasource="store1975"><cffunction name="OnRequestStart" returntype="boolean" output="true"> <!---Any variable set here can be used by all out pages---> <cfset request.company = "Sisterhood of the Traveling Headpiece"> <cfset request.filepath = "D:\home\travelingheadpiece.com\wwwroot\"> <!---Display Header on every Page---> <cfinclude template="header.cfm"> <cfreturn true> </cffunction> <cffunction name="OnReq
I have a working code below: <cfoutput query="Mush2"> <tr> td nowrap="nowrap">#DATEFORMAT(commentdate, "mm/dd/yyyy")#</td> ......some code here <td nowrap="nowrap"><CFIF len(APPROVEDDATE)><img src="icon_checkmark.png" onmouseover="" onmouseout=""></cfif></td> </tr> </cfoutput> Is it possible that when I hover over the image icon_checkmark i will be able to output the #dateapproved# in the mush2 query ?Or do i have to end up using javascript or something else to make it happen?
In CF9 i have a cfgrid bound to a hidden field and a cfc query component.Then i have a select box where the onChange() event triggers a js function which updates the hidden field with the select value and triggers the cfc, populating the grid with new data.In this js function, i'm trying to add an event that would trigger a chunk of code when the grid is refreshed, like:function myFunc(val) { document.getElementById('myHiddenField').value=val; ColdFusion.Grid.refresh('myGrid',true); var grid = ColdFusion.Grid.getGridObject('myGrid'); grid.addEvents('reconfigure'); grid.on('reconfigure',function(){ alert("Grid changed!"); });}I don't get an error but the function never executes, don't get the alert. If i change the event to something that happens AFTER the grid gets refreshed, like grid.addEvents('click') it works fine. What am I missing?Thanks
I have this code: <cfoutput query="GetResults"> <tr> <td nowrap="nowrap">#csedept_name#</td> <td nowrap="nowrap">#question_1#</td> <td nowrap="nowrap">#question_2#</td> <td nowrap="nowrap">#question_3#</td> <td nowrap="nowrap">#question_4#</td> <td nowrap="nowrap">#question_5#</td> <td nowrap="nowrap">(#question_1#/#question_2#)</td> </tr> In line 9 I dont get the answert i would like i actually get the value of question_1 and question_2 , something like (5/4). How would i get it to show 1.25?
Good morning, got a coldfusion question. I am currently working with coldfusion to create a search engine for a bunch of newspaper PDFs we have. I am having problem getting the Verity Collection and database to search as one. Any suggestions on how to get them both to search as one? Quick side note I have a search form and I have two results form. One results form is for the database and the other results form is for the Verity Collection. I have the search form linked to Both results form. I want to combine both results forms into one results. below is the one results I tried to combine but got an error.<cfquery name="union" dbtype="query">SELECT digitalnewspaper.county, digitalnewspaper.doi, digitalnewspaper.town,Newpapers.criteria, Newpapers.Summary, Newpapers.title, Newpapers.Context, digitalnewspaper.newspapername, digitalnewspaper.DOI, digitalnewspaper.town, digitalnewspaper.countyFROM Digitalnewspaper, Newpapers</cfquery><
Hi i want to convert Query object into json data::But i got this type record:[{"PRODUCTNAME":"2014 Kia Cadenza Premium 4dr Sedan (3.3L 6cyl 6A)","PRODUCTCATEGORYID":1,"PRODUCTID":1},{"PRODUCTNAME":"2014 Chevrolet Cruze Diesel 4dr Sedan (2.0L 4cyl Turbodiesel 6A)","PRODUCTCATEGORYID":1,"PRODUCTID":2}]And I wan to this type record::[{"ProductName":"2014 Kia Cadenza Premium 4dr Sedan (3.3L 6cyl 6A)","ProductCategoryId":1,"ProductId":1},{"ProductName":"2014 Chevrolet Cruze Diesel 4dr Sedan (2.0L 4cyl Turbodiesel 6A)","ProductCategoryId":1,"ProductId":2}]I want Field name according to my Table Column Name...(Not all characters of columns are capital like above)my code:QueryToJson.cfm<!DOCTYPE html><html> <body><cfscript> myJSON=new Component.queryTojson().queryToJSON();</cfscript> <cfdump var="#myJSON#" > </body></html>queryTojson.cfc<cfcomponent><cffunction name="queryToJSON" returntype="string" access="
What steps need to be taken with the firewall to permit access in the LAN to the development server running Cold Fusion's built-in web server? Simply opening port 80 doesn't seem to be sufficient; by default, Windows 2008 Server R2 is still blocking the programs themselves. Pasted below is one example, from a block notification, but I need a complete list so that I can be sure I've permitted access to everything that's needed. Even though the access is just from within the LAN, for testing purposes (at this time), I still like to keep the firewall running as a best practice.Cheers,ShaneWindows Firewall was unable to notify the user that it blocked an application from accepting incoming connections on the network.Reason: The application is a system serviceApplication Path: C:\coldfusion11\cfusion\db\slserver54\bin\swagent.exeIP Version: IPv4Protocol: TCPPort: &nbs
I have just installed CF 10 standard onto Server 2008 SBS and can not get the administrator password to work. I have uninstalled and reinstalled and it still does not work.
I'm trying to teach myself ColdFusion and I need a testing enviroment to play around in. I already have XAMPP installed on my computer. Do I need to delete XAMPP in order to install ColdFusion locally?Thanks.
My CFBuilder 3 build has search in the top menu listed as %label.search. And the submenu is %label.references. Huh?
Does anyone know where/how to turn on word wrap in CFBuilder 3?I'm on the Mac, OSX 10.9.2Thanks,Rich
HiI installed Coldfusion 11 and have created several different CF instances using the Instance Manager. Each instance is available on a different port, so for example http://127.0.0.1:8504/ is a different site than http://127.0.0.1:8502/What I'd like to do is edit the host file on my Mac (Mavericks) to get http://127.0.0.1:8504/ to resolve to "site4", as an example.When I edit my host file I typed "127.0.0.1:8504 site4"But it doesn't seem to work. I'm guessing it has something to do with the port number being present in the url? Yes, I saved the host file and even flushed the DNS but I can't seem to get site4 to resolve to 127.0.0.1:8504....Any ideas?Many thanks,Rich
Greetings,We have a Windows 2003 server running CF7, and we feel that we need to upgrade to CF10. We have been working on a new installation on a Windows Server 2012 machine, but have run into some snags. Someone suggested that it might be easier to upgrade from 7 to 10. We were concerned that upgrading in place might have unforeseen issues. My question is this: is it better to build a new server with a clean install of CF10 and migrate our code, or should we leave the code in place on the existing server and upgrade to CF10? Additionally, when upgrading, can you go from CF7 to CF10, or do you have to step up to each version (7 to 8, 8 to 9, then 9 to 10)?I would really appreciate some advice in this area. Thanks!Jamie
For some time I have been trying to change a password via cfldap. The connection is made over SSL and port 636 (cfssl_basic), tested within logins. I tried the following version of code:<cfset password_new_retyp=charsetEncode(charsetDecode('"'&password_new_retyp&'"','UTF-16LE'),'UTF-8'))> <!---encoded, decoded password ---><cfldap action="modify" dn="#session.dn_addres#" --- i query this on login modifyType="replace" attributes="unicodePwd=#password_new_retyp#" server="xxxx.xxxx.xxx.xx" --- name of server thet i use on login secure = "cfssl_basic" port=636 username="#session.username#" ---username thet is used on login password="#password_old#"> ---- pass before changingand error is somthing like this :An error has occured while trying to execute query :[LDAP: error code 49 - 80090308: LdapErr: DSID-0C0903C5, comment: AcceptSecurityContext error, data 52e, v23f0 ].I also tried this method without encoding password:<cfldap action="modify" dn="#se
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.