The official community for ColdFusion.
Nyligen aktiv
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
We want to use ColdFusion to read a GreenPlum database. We know that GreenPlum is based on Postgres, and Postgres is supported. Are there plans to include GreenPlum is there a way to use it in ColdFusion 2016?
Are there any known limitation with using CSS paged media or guides on how to style a pdf when using cfhtmltopdf?
How can I get 100% control over the style of my PDF using coldfusion's cfhtmltopdf and css. I would like to know if CSS paged media or print css works with cfhtmltopdf. I have successfully created PDFs. My normal CSS shows fine, it's just the @8546378 css and @media print calls are ignored.What does work is page-break-before: always but other page-break styling gets ignored.
once i submit this form, i got error on GetSQLValueString($_POST['tarikh'], "date")); the error shows Warning: sprintf(): Too few arguments in on line 53 Query was emptyHow can i solve this problem?so, this is my php file<?php require_once('Connections/athira.php'); ?><?phpif (!function_exists("GetSQLValueString")) {function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "") { if (PHP_VERSION < 6) { $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue; } $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue); switch ($theType) { case "text": $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL"; break; case "long": case "int": &nbs
Hello All,I recently purchased the ColdFusion Builder 2016 upgrade from CF Builder 2 to 2016.I have tried three time to install this application and each time it goes through the entire install and the log file show Successful for everything.Two Issues:1. When installing I enter my new Serial (CFB 2016) and it works but when I add Previous Serial (CFB 2) it does not accept it. I then choose to use the trial version which runs to completion without error.2. When I attempt to start it the icon appears on my task bar for about 2 seconds then disappears.Note:I am running on Windows 10 Pro Version 1607 Build:14393.479I am running Java 64 Bit: Java 8 Update 111 (64-Bit)I am running ColdFusion Server 2016 (developer edition)I have CFB 2 Installed on this same PC (I think required for upgrade)I have spent hours searching various blogs, forums, etc and have tried everything that seemed somewhat logical but in the end it will not run.On the other hand CFB 2 runs perfectly.I want to thank you (an
We upgraded from CF9 to CF2016 a couple of weeks ago.The following issue seems to occur every few days. When it occurs, there are large numbers of exceptions at exactly the same instant. There were *47* of these NullPointerExceptions in our exception.log this morning:"Error","scheduler-2","08/03/17","05:11:14","","'' The specific sequence of files included or processed is: '''' "java.lang.NullPointerException at coldfusion.runtime.NeoJspWriter.writeOutput(NeoJspWriter.java:228) at coldfusion.runtime.NeoJspWriter.flush(NeoJspWriter.java:362) at coldfusion.cfc.CFCProxy.flush(CFCProxy.java:357) at coldfusion.cfc.CFCProxy.doInvoke(CFCProxy.java:332) at coldfusion.cfc.CFCProxy.invoke(CFCProxy.java:302) at coldfusion.runtime.A
Some background: we recently upgraded from CF 10 to CF 2016, and moved to a new server (Windows Server 2012 R2, IIS 8). All updates are installed for all of the above (cf version 2016.0.03.300466 and jvm version: 25.72-b15). Here's the issue: In my Application.cfc I've got a completely empty onSessionEnd.<cffunction name="onSessionEnd" returnType="void"> <cfargument name="SessionScope" required="true" /> <cfargument name="ApplicationScope" required="false" /></cffunction>I've got onError is currently set up to send me an email. I am periodically getting this:arguments - struct EVENTNAME onSessionEnd EXCEPTIONarguments - structCausearguments - structMessage [empty string] StackTrace java.lang.NullPointerException at coldfusion.runtime.NeoJspWriter.writeOutput(NeoJspWriter.java:228) at coldfusion.runtime.NeoJspWriter.flush(NeoJspWriter.java:362) at coldfusion.cfc.CFCProxy.flush(CFCProxy.java:357) at coldfusion.
HI,I am migrating to new pc and I am trying to deactive the licence on the my current pc. From what I can find about this I should be able to do this by accessing the help menuHelp > Adobe ColdFusion Builder DeactivationBut my help menu does not have this option, and i cant find any other way to do this.Does anyone know how to do this?ThanksAidan
Remix with Firefly Community Gallery
Thousands of free creations to fall in love with and remix in Firefly.
Har redan ett konto? Logga in
Har du inget konto än? Skapa ett konto
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.