The official community for ColdFusion.
Recently active
Folks, Is there any code review tools available for CF?... (Either Open Source or Commercial).. Your help is greatly appreciated... Regards, David R
When serializing an object with a null or "undefined value" property (at least when it's a date), serializeJson dies trying to format the null date.'' is not a valid date/time format.----------------component displayName="Order" accessors="true" { property name="orderNumber" type="string" property name="dateOrdered" type="date"}...var order = new Order();order.setOrderNumber("12345");serializeJson(order); // BOOM!---------------------In the past, null/undefined values would be excluded from the serialization -- and that's exactly what I want.Is this just the way it is now?! Or is there something else I can do?
Hi experts - I want to create a CFschedule task to run every 30 seconds and was wondering what would happen if a Task tries to fire up while the previous task is still running - does it wait or die or ???[Moved from the non-technical Lounge Forum to the specific Program forum... Mod][Here is the list of all Adobe forums... https://forums.adobe.com/welcome]
Hello,When I send Coldfusion accentuated, it does not happen because of; ect...Here is an example :<meta http-equiv="Content-Type" content="text/html ; charset = utf-8 "/> <body> <CFOUTPUT> <cfset mesx = "Nous avons collect&eacute; le maximum d&#39;informations sur les golfs.<br>Nous n&#39;avons pu, faute d&#39;information et en particulier d&#39;e-mail,… "> mesx : #mesx# </CFOUTPUT>Here's the feedback :Invalid CFML construct found on line 29 at column 67. ColdFusion was looking at the following text:;The CFML compiler was processing:An expression that began on line 29, column 64. The expression might be missing an ending #, for example, #expr instead of #expr#.An expression beginning with \", on line 29, column 23.This message is usually caused by a problem in the expressions structure.A cfset tag beginning on line 29, column 10.The error occurred in \\192.168.0.1\H3637\zennetbuilder.com\Admin\EssaiD.cfm: line 2927 : <TR>28
Hello, all,I've got a virtual network running in VMware Workstation 11 that has two Ubuntu Servers (Trusty Tahr, CLI only) and a Windows 7 client (need the GUI for Workbench.) It has been running smoothly for over two years. Until yesterday.I started up my clients, opened a browser to go to the DEV environment, and the site came up fine. Then I tried to log on to my site. Error. Checking the resulting email, it said something about trying to connect three times to the database and giving up.So I checked various logs and came across this in /var/log/mysql/error.log:IP address 'x.x.2.161' could not be resolved: Name or service not knownThis was never a problem in the last two years. Why now? And how can the system NOT resolve AN IP ADDRESS????Please advise.V/r,^ _ ^PS ColdFusion 11 running on Ubuntu 14.04.5 LTS on one client; MySQL 5.6.33-0ubuntu0.14.04.1 on another client.
I have a calculation in Report Builder that possibly returns a value that contains a decimal. I need to truncate this value to an integer. "Floor" is not in the mathematical functions. Is there a way in Report Builder to truncate a value?Ex: 9.86 needs to appear as 9 not rounded to 10.
Hello Community! I recently began working on a POC with CF2016 and was a little shocked to learn that the defacto method of getting to the /CFIDE/administrator was via localhost through SSH Tunneling (Per lockdown pdf). The out of the box alternative to ssh tunneling was to punch a hole in the firewall for port 8500. Security be damned! Both of these methods were unacceptable (seriously adobe!). Thus began a 2 day deep dive into a flawed Java product. In stead of boring you with a 14 hour deep dive as to everything that didn't work - here is what did work :PreReqs :RHEL 7 X64 Minimum installColdfusion2016 Enterprise Edition patched to 2016.0.02.299200Tomcat Version 8.0.32.0Java JRE Server 1.8.0_102Firewalld Rule for 8443/tcp allowed from Devops TeamSteps :1. Download latest JRE 8 Server edition to /opt/coldfusion2016/ (Update CF JVM path to match i.e. /opt/coldfusion2016/jdk1.8.0_102/jre/ )2. Download and deploy Un
Can someone please help me if 'ColdFusion Builder' Embedded or Bundled Java?
HiI've just recently installed CF11 on a new machine but I'm encountering the below issue when trying to navigate to the localhost directory in a browser.On my previous machine which was using CF10 I was able to get the directory listings and navigate through folders to specific pages so is it some setting that I am missing?I can navigate to CFAdmin okay and have added a whole range of aliases in my server.xml file which I can navigate to, as well as adding the CFIDE and WEB-INF ones.As an aside, I also seem to get that silly 404 badge in front of CFs debug output when I try and navigate to a page that doesn't yet exist. Is there a way to switch it off?If you need more details let me know.Thanks in advance
Hello,I would like to be able to annotate the different elements of a list made with a cfloop.I do not know how to do it.Thank you for your help.
Hi,Since I downloaded the new adobe version, I can no longer see the logo of my site http://www.taxi-airports-transfer.com/Instead, Google Crhome does not work for me. It does not make me see videos and pictures.Because?I use xp64Thanks
I am trying to create pdf in Hindi language via cfdocument tag using UTF-8 type of encoding.I could see the pdf in Hindi but not all characters are displayed properly.There is a issue with glyph and ligatures. I have tried all the major fonts but the results are same.I have added the required arguments in jvm settings also I have used the <cfprocessingdirective> tag. Can anyone please guide me on this issue.For example तिमाही is displayed as त िमाही and द्विभाषी as दव िभाषी.
I'm reworking an old coldfusion website.Running the developer edition on my Win7 desktop, using the tomcat server (by default)Trying to do some things with mod_rewrite, but can't seem to locate the .htaccess file anywhere...Where would it be?Better still.....Should I reinstall the developer version to use IIS as the webserver to better work with mod_rewrite?It looks the live the site I'm reworking is actually hosted on IIS, so it might be a better idea to go the reinstall/IIS route?
How can I set up communication between CF 2016 and SQL 2012 using TLS 1.2. or higher? ThanksTim
I am looking for Developer Addition for ColdFusion 11 installer for free. I could find 30 day trial version but isn't there a installer which can be used for free indefinitely on a developer's machine.
Hello,I have a coldfusion 11 install on a windows server.I am trying to create a scheduled task with an eventhandler.Here is the error I am receiving:An error occured scheduling the task.Invalid eventhandler.Error: Eventhandler taskalert could not be found.The event handler cfc is located here:C:\ColdFusion11\cfusion\wwwroot\taskalert.cfcIn the box on the scheduled task I just entered taskalert because I dropped the cfc in the base directory.The directions say:Specify a dot-delimited CFC path under webroot, for example a.b.server (without the CFC extension). The CFC should implement CFIDE.scheduler.ITaskEventHandler.Everything I read shows that the webroot default is C:\ColdFusion11\cfusion\wwwrootbut it doesn't seem to work.The CFC contains code found here: http://help.adobe.com/en_US/ColdFusion/10.0/Developing/WSe61e35da8d31851899e53a51353e870493-8000.htmlbut I changed it to my email addressAny ideas what I am missing?Thanks!Randy
I am trying to setup localhost communication with ColdFusion 8. I have downloaded and installed CF8 and Dreamweaver 8 on my Windows 7 computer, I have enabled IIS 7 under windows features, and my webroot seems to be understood by IIS. My CFIDE folder is located under inetpub/wwwroot. In the IIS manager the CFIDE folder comes up under the default website tree. But when I try to call on a cf script, I get this:When I try to call on my administrator I get this:I am extremely new to networking and I know nothing about setting webserver applications up. I feel like this is probably a pretty simple and obvious problem and fix. I am trying to learn but I am having trouble finding where to start.Could anyone help?
Upgraded to CF 2016 (on Windows 2016 64 bit VM server with 2 CPUs and 4GB of ram), and have had a lot of issues with the server hanging, going very slow, and the CPU spiking to very close to 100% and never going down. Usually a server/CF service restart fixes the issue for a while. I'm rebooting the server sometimes 3-4 times a day. This is the same code that worked fine w/o any issues like this in the past for years. After a reboot things will look like normal for hours, and then just slowly deteriorate to the point where it's unusable. It's kind of random too. Sometimes 2-3 hours. Sometimes 6, etc. Sometimes it'll happen overnight when just a few scheduled tasks are running. Things that have run for years w/o issue.I'm trying to tweak the java arguments to help resolve this thinking this is maybe the problem. This is my jvm.config arguments:java.args=-server -Xms1024m -Xmx1024m -XX:+PrintGCDetails -XX:+PrintGCTimeStamp
What is the main reason this code will display the menu vertically ?Anything that can override?<cfmenu bgcolor = "##ccff33" font = "Tahoma" fontColor = "red" fontSize = "10" selectedFontColor = "black" selectedItemColor = "##ffdd99" type = "horizontal"> <cfmenuitem display="My Bookmarks" href="URL1" target="_self"/><cfmenuitem display="My Score" href="URL2" target="_self"/><cfmenuitem display="My Status" href="URL3" target="_self"/> </cfmenu>
I am migrating some CF 10 servers to 2016. I did a development box first and it all went smoothly of course. But when I tried to do my first production server, the installation failed with the error that the Web Config tool failed. When I try to run wsconfig manually I get the error: "All the IIS sites are already configured by some other version of ColdFusion". CF 10 is still installed on the box, but I stopped the service before starting the new installation.Has anyone else seen and been able to solve this without totally uninstalling IIS too?Thanks.
Hi,I'm using Coldfusion 11 and I'm trying to consume a web service but I'm getting the following error:org.apache.axis2.AxisFault: An error occurred while checking the security for the message.I can create an object of the WSDL and cfdump it, so there's no problem with the definition. The error occurs when I try to call one of the functions.<cfset ws = createObject( "webservice", "https://testapi.kedin.nl/mediatorservice.svc?wsdl" )><cfdump var="#ws#">Has anyone seen this error before?Thanks
This question has been answered, but the answer is about a decade old. Can anyone tell me if this is possible? If so, what is the process? Any suggestions or comments are appreciated.
I want to try if the coldfusion API can be access using php code? Like example, it is possible to save post data from php form to coldfusion API?
Hi having an issue on the initial migration wizard page (enter.cfm) - it won't take my administrator password (reinstalled CF 3 times) and double sure I am typing the correct password - anybody else have similar issues?CF11 clean installWindows 2008R2 IIS7.5
We need to decrypt a key passed to us from a third party in order to then decrypt data sent in the same transmission. We use a static secret key that we have to decrypt the key, which apparently works (no error thrown); however, that decrypted string does not decrypt the data. So, we receive two fields: secret and data, both encrypted strings. Here's our code:<cfset data_key=Decrypt(secret,"our secret key here","AES/ECB/PKCS5Padding","Base64") />This code completes successfully (or so it seems), but using the resulting data_key to decrypt the data, like this:<cfset data_str=Decrypt(data,data_key,"AES/ECB/PKCS5Padding","Base64") />gives this error:An error occurred while trying to encrypt or decrypt your input string: '' Can not decode string " U� ��v�p'|cx� � �O���s��)�R��"..We've tried transforming data_key in various ways to make it work, but we're out of ideas.More relevant info:We're attempting 256-bit AES encryption and have installed the JCE Unlimited Strength Jurisd
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.