The official community for ColdFusion.
Recently active
Despite having ColdFusion Builder since CFB2 and now been given CFB3, I haven't managed to understand how to setup the environment correctly so unfortunately I've ditched it and continued to use Dreamweaver.Now I'd like to try CFB3 properly, but I am still struggling to replicate my DW environment.Basically in my DW site, I have got a Testing Server configured using the option that says connect with "local/network". It just points to my inetpub folder for the site on my local machine (my local machine runs IIS7 with ColdFusion 11 installed to run on that). This testing server is where I first 'upload' my modified web files to make sure they all work correctly.When I'm happy that my files are working, I'll then do an FTP upload to the remote production server. I want to replicate my work workflow in CFB3 like this: Edit local files in my working folder. This folder contains ALL the site's files.Copy modified files to the local inetpub folder on the computer. Sometimes I like to copy/upl
I'll see if I can explain: /application.cfc/api.cfc/web.configIf you call a URL structured in this manner "domain.com/method/function" then I have a url redirect in web.config that translates that to /api.cfc?method=init&function=functionname. The api.cfc has an init handler that takes those URL params and calls the actual private function it has that matches those needs. This is heavily simplified, but you get the idea. The application.cfc is a shell of a file, nothing is done in there at all. Just function outlines. This ALL works fine except when the CFC itself returns a CF error. If you call the URL directly (as it was explained above) with a GET then you see the error. IF you use a HTML form to post to the page in a browser, you see the error. However if you POST data to that URL using CFHTTP then the connection times out based on the CFHTTP timeout param. The response is "connection timeout" in the CFHTTP vars and status code 200. This is stumping me.
Hello, everyone,I think I may have asked this, once before, not sure.I'd like to set up a development network using VMware v11, setting up two VM servers.One of the VMs I'd like to setup Ubuntu as the server OS, and set up Apache for web with PHP. I'd also like to install CF Server 11, and have both CF and PHP work together in the same environment.Has anyone successfully done this? Or know someone who has?V/r,^_^
Getting a strange error when 'modifying' an exchange task.I create tasks with the same code, except I have action as "create" and UID as "result" and it works fine. The error I'm getting when modifying a task happens before the page loads. The double comma's in the error message make me think this is a bug with <cfexchangetask>. Here is the code:<cfexchangetask action="modify" task="#sTask#" username ="username" password="password" server="server.full.url" protocol="https" port="443" serverVersion="2010" UID="#exchangeGuid#">Here is the error:TypeTemplateMessageAttribute validation error for tag CFEXCHANGETASK.DetailIt has an invalid attribute combination: action,password,port,protocol,server,serverversion,task,uid,username. Possible combinations are:Required attributes: 'action,server,,task,uid,username'. Optional attributes: 'exchangeapplicationname,exchangeserverlanguage,formbasedauthentication,formb
I last coded in 2001, but thought I'd get back to it again to develop some in-house tools as I launch a business.It's just like I remembered, so far anyway...Wrinkling out the bugs for set-up and launch is a frustrating process, but once you get past that, the coding is fun and delicious.Unfortunately for me, the "so far" has only gotten me to the first part of the previous sentence.Sorry for the lead-up... Here's the skinny:I'm on a clean Windows 8.1 machine. All I've added to the Windows install is MS Office 2007 (including Access), CF11 Trial, and CFBuilder Trial. I can access and manipulate CF Admin with no problem, it's served from http://127.0.0.1:8500/CFIDE/administrator/index.cfm and I've had no problem clicking around to reacquaint myself with the product. My problem comes when I move over to CFBuilder and try to run my first index page (pretty simple page so far, the entirety of the code is between the quotes "<h1>test</h1>"). When I click on the run button, the b
I have just installed Yosemite and updated from Coldfusion 10 to 11. At present, I have two problems for which I can find no answers:The first, when trying to access the CF Administrator (http://localhost:8500/CFIDE/administrator/index.cfm), I get this error:The Graphing service is not available.This exception is usually caused by service startup failure. Check your server configuration.The error occurred in C:/work/cf10_final_hotfix/cfusion/wwwroot/CFIDE/administrator/Application.cfm: line 95Called fromC:/work/cf10_final_hotfix/cfusion/wwwroot/CFIDE/administrator/Application.cfm: line 85Called fromC:/work/cf10_final_hotfix/cfusion/wwwroot/CFIDE/administrator/Application.cfm: line 4Called fromC:/work/cf10_final_hotfix/cfusion/wwwroot/CFIDE/administrator/Application.cfm: line 1This problem may have originated after downloading and installing the ColdFusion 11 Update 3 hotfix.And second, when trying to access a web page on my local host, I get this error:Error Executing Database Qu
I recently installed a fresh install of CF 11 on Mac OS X Yosemite. All works fine except my stored procedures now no longer work. I am using SQL Server 2008 on Win XP using VMWare Fusion 7. The Stored procedure executes perfectly on the database and, when testing, all the paramaters are outputting OK on my CF page. But I get an error:[Macromedia][SQLServer JDBC Driver][SQLServer]Incorrect syntax near '='.The SP code is below:<cfstoredproc datasource="#dsn#" procedure="clw_logThisPage"> <cfprocparam cfsqltype="CF_SQL_NUMERIC" dbvarname="logid" value="#session.logid#"> <cfprocparam cfsqltype="CF_SQL_INTEGER" dbvarname="memberid" value="#session.member_id#"> <cfprocparam cfsqltype="CF_SQL_VARCHAR" dbvarname="pagename" value="#launch#"> <cfprocparam cfsqltype="CF_SQL_VARCHAR" dbvarname="clwref" value="#ref#" > <cfprocparam cfsqltype="CF_SQL_VARCHAR" dbvarname="casesletter" value="#letter#"> <cfprocparam cfsqltype="
Hello,My cold-fusion8 server is continuously go down and then UP. I have gazed on to the logs and I could see the error "Event Gateway Disabled". Anyone faced this issue before ? If so please help me.=====================================================Event viewer shows these=====================================================Event Type: ErrorEvent Source: ColdFusion 8 Application ServerEvent Category: NoneEvent ID: 257Date: 1/21/2015Time: 5:44:20 PMUser: N/AComputer: XXXXXXXXXXDescription:The ColdFusion 8 Application Server service was terminated. Check the server "coldfusion" log files for more information.======================================================Thank you.
Hello,I am having a dandy of a time figuring out why I cannot suppress a leading space in mycf 11 output. I have requirements that I must not have leading or trailing white space.Not matter what I try, I get a leading space before the <html> tag. Here is the codeI have tried.<cfsetting enablecfoutputonly="true" showdebugoutput="no"/><cfprocessingdirective suppressWhiteSpace="true"><cfsilent><cfsavecontent variable="out_html"><cfoutput><html><body><p>OK</p></body></html></cfoutput></cfsavecontent></cfsilent><cfoutput>#out_html#</cfoutput></cfprocessingdirective>Any help appreciated. Thanks,bob
I've been tasked with finding out how other companies implement error logging. I'm not interested so much in how to use Coldfusion to log errors, I'm more interested in whether folks are using third party error logging tools.What tools does your company use to manage application wide error logging?Thanks in Advance
I see in the help file for ColdFusion Builder 2 that it used to have a tag editor. The keystroke doesn't seem to do anything and I can't find anything in ColdFusion Builder 3 that resembles a tag editor. I am new to ColdFusion Builder as I have been using HomeSite for a long time, but finally decided to make the jump. I am really liking everything I see, but the one thing I am having a hard time with is being able to do standard HTML, like loading an image tag in an editor and choose a picture and it will pull the width and height for me. Or being able to just drag an image onto my code and have it create the image tag with the link.I have searched around the program and finding nothing, can anyone shed any light on whether this exists or not? If not, what is the way I should get used to.Right now I see that I can press Ctrl+Space when I am on existing image file name in a <img > tag and I can double-click to open the file editor, but then I have to
I have issue to browse .cfm pages from remote filer, the same cfm pages works when placed at local drive on server. its IIS 8, CF 11 and wondows server 2012. When I access .cfm pages from remote filer, it gives me an error "coldfusion.runtime.TemplateNotFoundException: File not found: " whereas the file exists on filer. the same works when i place files at local drive on server.Any suggestion is greatly appreciated.
I have not been able to accomplish this with CSS so I thought I would attempt it with CF. I am trying to print a membership list for a yacht club in 2 columns. I first loop through the query results like so (lots of conditions to avoid empty lines): <cfloop query = "memberInformation"> <cfif len(#phn_home#) GTE 8 || len(#phn_office#) GTE 8 || len(#phn_cell#) GTE 8 || len(#phn_spouse#) GTE 8> <cfset hasPhone = true> <cfelse> <cfset hasPhone = false> </cfif> <cfif len(#name_friendly#) GT 0 AND len(#name_spouse#) GT 0> <cfset friendlyName = '#name_friendly# & #name_spouse#'> <cfset hasSpouse = tr
Hi-I have a text file generated by a Pulse Oximeter, What I want is, as the system recieves the file (in .txt of CSV) it automaticly is entered into a MySql Database or SQL Server and generates an SMS message. ThanksRegardsTayyab Hussain
サーバー内にcoldFusionをインストールしています。同一サーバー内に検証環境と本番環境を両立させる場合に、それぞれcoldFusionの設定を分けることは可能でしょうか?ライセンスは2つあります。よろしくお願いいたします。
Win7/CF10Attribute validation error for tag CFDOCUMENT. It has an invalid attribute combination: filename,fontembed,format,formfields,formstype,localurl,mimetype,name,orientation,overwri te,permissions,saveasname. Possible combinations are:Required attributes: 'format'. Optional attributes: 'authpassword,authuser,backgroundvisible,bookmark,encryption,filename,fontembed,localurl, marginbottom,marginleft,marginright,margintop,mimetype,name,orientation,overwrite,ownerpas sword,pageheight,pagetype,pagewidth,permissions,printallframes,proxyhost,proxypassword,pro xyport,proxyuser,saveasname,scaletofit,scale,scaletofit,src,unit,useragent,userpassword'.Required attributes: 'format'. Optional attributes: 'authpassword,authuser,backgroundvisible,bookmark,encryption,filename,fontembed,localurl, marginbottom,marginleft,marginright,margintop,mimetype,name,orientation,overwrite,ownerpas sword,pageheight,pagetype,pagewidth,permissions,printallframes,proxyhost,proxypassword,pro xyport,proxyuser,
CF10 Requires too frequent login. How to extend the time between logins. Worked fine in CF8
I have a very large website that is constantly under attack via SQL injection.My SQL DB is corrupted weekly.I am in the process of doing the <cfqueryparam value throughout the site.But in the short term is there something I can add to the application.cfm if I know part of the string that is always been injected?For example if I know that the string "www.paydayloans.com" is trying to be maliciously passed is there some code I can add to prevent that from being used in the query?
Hi,The date picker in Cold Fusion 11 does not pop up the calendar when selected.It works with IE 8, but does not work with IE 9.Is there a setting in IE 9 or CF 11 admin that needs to be set?Thanks,Mike
Hi! I run my java servlet class application in Coldfusion 11. I use websockets in my app, but its methods not run. Websockets descripion locate in javascript and use in java classes. I see message "Conection established" but methods in java class don't runs(this classes are respond for uploading percents and they don't change on html). Websockets run on port 8577, not on 8500(8500 is a default port for my Coldfusion applications), because in 8500 javascript send message "connection terminated". Full code do you see in:http://stackoverflow.com/questions/28045097/connected-to-websocket-coldfusion-from-java-class-but-not-run-websocket-methods Please help.<!DOCTYPE HTML><html><head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <title>Multiple file uploader</title> <script> var totalFileLength, totalUploaded, fileCount, filesUploade
Just got over a huge hump in out new server configuration and got Distributed Mode set up.In IIS, site goes to CF 11 Server, but the CF server is set to use {cf_home}/wwwroot as the default root directory for pages.We are working towards the locked down recommendations, that have the web sites on another partition and we host multiple clients on one instance of CF. So that is the issue, not sure how we need to tweak the set up so that as IIS passes the requests over ports to CF server to go to the correct web code base.Let me attempt to illistrat:Web Server ColdFusion Server Code base on CF serverIIS/Site1 InstanceA P:\websites\Site1IIS/Site2 &n
To facilitate code sharing between ColdFusion and our .NET applications we have a .NET webservice running through IIS on localhost.Occasionally, under what appears to be high or persistent load, this connection errors out, which it didn't do with ColdFusion 9. Is there something I can change on either the service or the in ColdFusion to prevent this from coming up?Note that the service uses basicHttpBinding (<basicHttpBinding>) . It is listening to localhost on port 8888, and is not https.The fault returned when invoking the web service operation is: org.apache.axis2.AxisFault: com.ctc.wstx.exc.WstxIOException: Attempted read on closed stream.at org.apache.axis2.AxisFault.makeFault(AxisFault.java:430)at org.apache.axis2.transport.TransportUtils.createSOAPMessage(TransportUtils.java:124)at org.apache.axis2.transport.TransportUtils.createSOAPMessage(TransportUtils.java:68)at org.apache.axis2.description.OutInAxisOperationClient.handleResponse(OutInAxisOperation.java:354
Hi there,I would need some help in upgrading my ColdFusion in my company's server from CF 9.0.0 to CF 9.0.2Currently my company installs CF 9.0.0 on IIS, however our product would need to use Java 1.7.Some articles suggests me to apply cumulative hot fix and change the Java source path to Java 1.7, as mentioned in the article Cumulative hot fix 1 | ColdFusion 9.0.2However, the hot fix is only applicable to CF 9.0.2 and the CF (running off IIS) that got installed in our production server is CF 9.0.0.Some articles suggests that the only way to upgrade CF 9 to CF 9.0.2 is by doing a fresh install of CF 9.0.2 and uninstall CF 9.0.0.However, if I do that, won't I lose my data source information, etc?Is there any smooth way to upgrade CF 9.0.0 to CF 9.0.2?Thanks for your time to read my questions Any help or pointers are greatly appreciated.Ivan.
Win7/CF10Attribute validation error for tag CFDOCUMENT.It has an invalid attribute combination: filename,fontembed,format,formfields,formstype,localurl,mimetype,name,orientation,overwrite,permissions,saveasname. Possible combinations are:Required attributes: 'format'. Optional attributes: 'authpassword,authuser,backgroundvisible,bookmark,encryption,filename,fontembed,localurl,marginbottom,marginleft,marginright,margintop,mimetype,name,orientation,overwrite,ownerpassword,pageheight,pagetype,pagewidth,permissions,printallframes,proxyhost,proxypassword,proxyport,proxyuser,saveasname,scaletofit,scale,scaletofit,src,unit,useragent,userpassword'.Required attributes: 'format'. Optional attributes: 'authpassword,authuser,backgroundvisible,bookmark,encryption,filename,fontembed,localurl,marginbottom,marginleft,marginright,margintop,mimetype,name,orientation,overwrite,ownerpassword,pageheight,pagetype,pagewidth,permissions,printallframes,proxyhost,proxypassword,proxyport,proxyuser,saveasname,sca
We are trying to decide if it's worth it to move an old to a new server. It uses cold fusion 6.0.Will we need to update to a new version of Cold fusion & if so, will we need builder or what application (so we can figure cost)?Thanks for your help!
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.