The official community for ColdFusion.
Recently active
I have a report that passes a date (time stamp) to a subreport. Sometimes the date being passed is null (or an empty string) and the report . When this happens get an "Incompatible java.lang.String value assigned to parameter GradDate1 in the ColdFusionReport dataset.". I want to change the value of the Param being passed to current date. Where and How can I change the date in the parama being passed. I've tried many things (functions, in the query, etc) and can't get anything to work. We are on CF 9. Please help!
I am trying to edit the report query, changing the joins on the tables, and Report Builder crashes repeatedly. Anyone experienced this? Is there a patch for Report Builder I don't know about?Nathan Manning
with cfreport i can add some function to my report.i would access to recordset (passed to cfr) for ordering it.query to cfr -> ordering recordset in cfr -> printis this possible?thanks
I am using Report Builder 8.I am grouping on a date field, but some of the people returned have a null value. I need to show an alternate heading if that group's date is null, I would actually like it to head it with "No Date"However, I can not figure out how/where to put it that conditional statement.Thanks!Michelle
Does CF10 Server support SHA2 certificates for ssl LDAP?
I am using CF9 and have generated a report using CF Report Builder that has a report parameter that function correctly.I am trying to be able to get the variable value from the the address line and then display the cooresponding report page.I have set a default value in report builder and written a simple viewing cfm. <cfreport template="NC_ImpactReport.cfr" format="pdf"> <cfreportparam name= "CFVarProjectID" value=55></cfreport>When I run this I get the report returned correctly for record '55'http://website/nc_impactreport.cfmAnother program will have the hyperlink (http://website/nc_impactreport.cfm) with the selected record id(ie55) all on one line.How do I get the variable value from the address line into the cfm correctly to pass it into the report?Thanks,Kurt
Hello,I have been following the ColdFusion 10 lockdown guide (this question also relates to CF9 though) and we are recommended to change the /cfide/scripts directory to a custom directory as /CFIDE/Scripts should be blocked by request filtering.See point "2.2.8.1 CFIDE URIs" and "4.1.5 Setup Virtual Directory alias for /CFIDE/scripts/"Is there any way to edit the paths the WSCONFIG.exe tool uses so instead of it adding the 'jakarta' and 'CFIDE' virtual directories to all sites it adds the 'jakarta' and my own 'CFScripts' virtual directory which points to a different path than /cfide/scripts?My reason for asking this is after some CF10 upates we have to re-run the WSCONFIG.exe tool, this results in all my sites containing a /cfide/ virtual directory which I don't want - scripts should be accessible from /CFScripts which i have to manually add to each new site. If WSCONFIG.exe could add this for me it would save much time and allow a more secure setup.I hope I have provided enough inform
I'm running a cfindex in Solr of some 35,000 documents. The process keeps getting "maxWarmingSearchers exceeded" errors andI have found no mod of the setWarmingSearchers, cache and other things mentioned in various posts about the error. I finally found mention of useColdSearcher in solrconfig.xml normally being set false, but this could be set to true to avoid using maxWarmingSearchers. Is there a way to add that as an attribute in the cfindex attributes so useColdSearcher can be set to TRUE for a specific cfindex command but leave it as false in solrconfig.xml for general purposes?
In my LOGIN and LOGOUT module I am calling a cfc method using javascript ajax. But I want to pass password after encoding.Is there any way to encode the password to be send to CFC method so that I should be able to decode the same also in the CFC method.My javascript code is like below.xmlhttp.open("POST","cfc/useraccess.cfc?method=checkUserAccess&username="+username+"&password="+password,true);xmlhttp.send();I want to pass this password in encoded form.Any one have any idea on this.Your help is well appreciated.
Hi guys totally new here and honestly new to CF as well,So here is the situation I have to move coldfusion sites from an old sun solaris 5.8 system running coldfusionmx7 to a Windows server 2008 R2 system running Coldfusion 10. So far I have moved one site over for testing and I am getting a 500 internal server error Cannot find CFML template for custom tag sae_request_check ColdFusion attempted looking in the tree of installed custom tags but did not find a custom tag with this name. If you are using per-application custom tag mappings, ensure that per-application settings are enabled by the administrator. Again I am totally new to coldfusion I was able to get it running on the windows server but this transfer is a bit beyond me any advice is greatly appreciated.Thanks in advance
I am trying to get cffileupload set up on CF10. When I upload a file, I can confirm the file goes to where I specified, but the individual progress bar shows red and says "Error" (no code). The overall progress bar is green, but if there is more than one file, then it will not continue on to the 2nd. I have confirmed that the local account which runs CF has access to all pertinent directories (CFIDE, etc). I am setting the JSON values for a status of 200 and message of "Passed".What else could it be?
I have a collection made up of a document crawl to index pdf, word, excel etc.now i need to update the existing collection with meta data related to articles in reference to the documents, however when i run the query to update the meta data the existing records do not get updated, a new record is createdinitial index<cfif isNumeric(idx)><!--- directories named by year e.g.: 2009 are public ---> <cfset sCollectionName="#aCollectionCreated[1].CollName#"> <cfindex collection="#sCollectionName#" action="update" type="path" key="\\192.168.168.66\media\#idx#\" urlpath="#sFullSeverName#/wp-content/uploads/#idx#/"
This question was posted in response to the following article: http://help.adobe.com/en_US/ColdFusion/9.0/CFMLRef/WSc3ff6d0ea77859461172e0811cbec22c24-6dcf.html
Hi All,We are migrating an application from 6.1MX to CF 9.0. Before I do this I wanted to know till what time the Adobe will support ColdFusion 9.0. I mean the duration for which ColdFusion 9.0 will get support from Adobe.Please let me know the required information a.s.a.p.Thanks,Bharath
當我調用camera attachCamera 功能時 有部分手機待機完再打開 螢幕就會一直呈現黑色的狀況
I just downloaded and installed Coldfusion 10 (developer edition) Version: 10,0,0,283922. The most resent update, update 11, is dated July 19, 2013. Has this update already been applied?
I'm new to orm, and I'm making some tests. I've two simple object Artist and Art:Artist.cfc // identifier property name="ArtistID" fieldtype="id" generator="native"; // properties property name="Firstname"; property name="Lastname"; property name="Address"; property name="City"; property name="State"; property name="PostalCode"; property name="Email"; property name="Phone"; property name="Fax"; property name="ThePassword"; /* one artist can have many... */ /* return an array of Art objects */ property name="Art" fieldtype="one-to-many" cfc="Art" fkcolumn="ArtistID" type="array" orderby="Price Asc";Art.cfc // identifier property name="ArtID" fieldtype="id" generator="native" ; // properties property name="ArtName" ; property name="Description" ; property name="Price" ; property name="LargeImage" ; property name="IsSold" ; property name=
Hi Everyone,I have read Rupesh's blog post; http://www.rupeshk.org/blog/index.php/2009/07/coldfusion-orm-how-to-log-sql/and have appropriately changed the log4j setting### Also log the parameter binding to the prepared statements.log4j.logger.org.hibernate.type=DEBUGBut I still do not see the values of query parameters in my log files.All I get is the auestion marks;09/15 12:35:57 [ajp-bio-8014-exec-3] HIBERNATE DEBUG - insert into audit_log (description, created, userID) values (?, ?, ?)Does anyone have any ideas? And as always - thanks in advance!Gavin.Message was edited by: GavinBaumanis
I recently coded a CFGRID using CF9 with date fields using type="date". The date fields appear nicely with a little calendar to the right of the cell. I now realize that I have to have this working on a CF8 server. Is there any fix or addition that I can code to implement this calendar feature in CF8? <cfgrid name="taskGrid" bind="cfc:QuestionsDAO.GetEmployeeGroupObjectiveQuestions({cfgridpage}, {cfgridpagesize}, {cfgridsortcolumn}, {cfgridsortdirection},#employeeID#,{groupID},{scaleName})" gridlines="yes" colheaderalign="center" &nbs
I use jqGrid for my project using following server side code for ColdFusion in my cfc file.The jqGrid works only for a few pages.I can scroll for a couple of page using jqGrid pager.It seems that the page and records information does not send to jqGrid correctly.Do I need to particular to pass any row, pages and records information from client to make server response correct pages?Your help and information is great appreciated,Regards,Iccsi,<cffunction name="ccdClaimsLookup" access="remote" returnformat="json"> <cfargument name ="StartDate" required="no" default=""> <cfargument name ="EndDate" required="no" default=""> <cfargument name="page" required="no" default="1"> <cfargument name="rows" required="no" default="10"> <cfargument name="sidx" required="no" default=""> <cfargument name="sord" required="no" default="ASC"> 
My goal seems simple. I want IIS 7.5 to handle **ALL** 404 File Not Found requests, whether to static or dynamic (ColdFusion 9) content, and direct users to its custom 404 HTML page.I believe that the IIS settings I need are existingReponse=Replace, errorMode=Custom, and a file path specified for the 404. That's what I've done.With a CF10 install, it works. With CF9, **for some reason both the static IIS 404 response AND the ColdFusion 404 response are sent to the client and displayed**. Very weird.I've tried all manner of alternate configurations, and there seems to be some problem with each approach.Any ideas why IIS would fail to replace Coldfusion's 404 message? Is ColdFusion failing to communicate to IIS (via the appropriate header) that it's sending a 404? Is IIS being obstinate? Why would it be different with CF10 and CF9?--------------------------ColdFusion 9, via CFAdmin--------------------------Global Settings- Missing Template Handler = [no path specified]-------------------
On all of our Coldfusion installs, I don't know since when, the admin panels are showing the installed version as being Developer - even though I'm for sure using 100% valid CF Standard keys. I've been on with Adobe this morning, checked the keys are legit and they are, but for some reason it's not showing in the CF admin. For example, when I run the PDF authoring it has the big watermark text across the outputted page saying that it's a Developer version - not cool!The CF installs are all up-to-date with the most recent patches - gives the version number as 10,0,11,285437.Is anyone else suffering the same problem? Does anyone know of a fix? Is there something I can clear out and refresh to have it re-assess the license version? Thanks, Henry
I have installed #6 error message reads " Missing short cut
This question was posted in response to the following article: http://help.adobe.com/en_US/ColdFusion/9.0/CFMLRef/WSc3ff6d0ea77859461172e0811cbec22c24-6cf9.html
it is true that the cffileupload flash utility posts data using only http and NOT https?if so, is there a work around?
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.