The official community for ColdFusion.
Recently active
I just ran the 9.1 update for CF and now the administrator page will not load, the site runs but that is it I know I'm missing something. I have rebooted the server. No change and all the services are running. I am on the server not trying remotely .Message was edited by: Norman Rothwell
Could anybody tell me if there is anyway to log requests times of all queries?I have a recent issue where I've started to get deadlock issues with my SQL. There are so many pertential permitations from the SQL queries based on individual users and other data that I'm having a hard time figuring/replicating which queries might be taking too long and under what circumstancesThanksMark
In the cffunction tag in a CFC function that returns data to an Ajax client, specify a verifyClient attribute with a value of yes.The VerifyClient function and attribute tell ColdFusion to require an encrypted security token in each request. To use this function, enable client management or session management in your application; otherwise, you do not get an error, but ColdFusion does not verify clients.Enable client verification only for code that responds to ColdFusion Ajax client code, because only the ColdFusion Ajax library contains the client-side support code. Enabling client verification for clients other than ColdFusion Ajax applications can result in the client application not running.Before you ask, session and client management is on, cfadmin is set up properly, I am logged in, I display my sessionid and urltoken at bottom of pages on development server, all is good, exept this of course.AJAX call:$.ajax({ url: 'somecrap.cfc?method=validateForm&' + Math.rand
Hey all. We have a ColdFusion 10 Standard Server on IIS 7.5 in Windows 2008 R2 Datacenter (Virtualized) and have been having the oddest issue that I've been opening up forum posts and support tickets and have not resolved.In short, CF will render up the page randomly. On 1 call, all of the page is shown. On another, nothing. On another, part of the page's code is generated. I use the Web Developer Toolbar and on the full page loads, nothing shows any fault (200 and 300 codes). But on the no or partial page load, the WDT shows ERR 101 (Connection Reset) and ERR 103 (Connection Aborted).I have tried a myriad of things to no avail and am asking if anyone has ideas I can look into. I know that this could be CF, IIS, the Server, how the network is setup, etc. But I think to get to a solution, I have to start ruling things out. I am able to remote to the server and bring up the CF Admin, request as many pages in it as I like, and it loads
This question was posted in response to the following article: http://help.adobe.com/en_US/ColdFusion/9.0/CFMLRef/WSc3ff6d0ea77859461172e0811cbec22c24-7fe5.html
I actually hads this working and without warning I am now getting this error message in the IDE Console.Error retrieving server version. Cannot perform the operation. Check if the server is accessible from web browser.Well it is running fine, I can browse the website I can even enter the administrator. But when I try to stop the server or restart the server this is the error I get.I have looked at everything, running the IDE as an administrator. Making sure the firewall is off on both machines, and yet nothing I do has worked.Anyone know how to fix this?
Hi,I observe that in my application log file for CF 8 there is thousands of requests of a certain file that doesn't exist. These actually kill my server twice a month. Seems almost like a Dos-attack. I've sourced the files according to that specific application, but can't find any reference to that file in my code. It is requesting a IMG.cfm file. So where to look from where this file is requested? It's not in my code, searched many times in the directory the application lies within. Can I get some traces somewhere? Thanks. BR,Kjetil FinsrudNorway
Hello,we have running an CF10 Server. We do monitoring with cfstat for one week.We are not sure, what the avg db time value shows.The documentation says (for CF10): A running average of the time that ColdFusion spends on database-related processing of ColdFusion requests. Averages are displayed for the last two completed requestsThe documentation für CF8 :(A running average of the time that ColdFusion spends on database-related processing of ColdFusion requests.) The difference is with or without the last two completed requests.Now, we can track that the value for the avg db time constantly goes higher and higher. 100.000 milli seconds and more.But we didn't have any problem with long database requests.Request time for all database requests at our application are near 100 milliseconds.What means the avg db time really?What do I understand not correctly?Thomas
I got update message from my CF10 Developer version.I just click on download and install. After install my CF10 update, I got my right side screen of admin error message.The web site exreience error, please contact admin...I am not sure what happen to the update,How can I repair this update,Your help and information is great apprecaited,regards,Iccsi
Hi,I have a web project using session to store a code num.In my working machine, original session variable is "A000". I set the session to "A123". Then, go to second page and it shows session "A123" correctly.However, in another working machine, I set the session to "A123", second page shows session "A000", not the one I updated.How this happen? And how can I solve this problem?
I have installed the ColdFusion 10 as a local host and Now when I am trying to setup the ColdFusion Builder I can't seem to get it to select the Local Server. Help Please
I have tried for two days to get just a small bit of tech support on the setup of Adobe ColdFusion 10 and ColdFusion Builder. More than half a day calling all kinds of departments at Adobe and so far no one is actually interested in offering even a modicum of tech support. As a business owner it seems counter productive to even offer a trial of expensive, complex software and not follow through with the bare basics of setting it up so that potential customers can at least see what it does or is supposed to do.contact me if anyone in your company would like to solve this for me.
I have a client with an existing ColdFusion 7 website. They need it upgraded to ColdFusion9. How do I upgrade the code? I need to know what software I'll need, whether there is a cost for that software, and how long the upgrade will take.
Recently, some security audit testers have insisted that the error screen NOT BE SHOWN when /CFIDE/GraphData.cfm is called. They obtained the URL from one of our graph reports, which usually have a query string appended to it when called with CFCHART. The resulting page is as attached, a Jrun Servlet Error 500 Internal Server Error page. They have categorized this under "Weaknesses in Error Handling mechanism" and insist that it should be improved.My question is : Without messing about with 1) IIS MOD REWRITE, or 2) Engage complicated methods to generate a CFCHART image (ie generate CFCHART, save it to a temporary directory, and re-displaying it without going through GraphData.cfm)Is there a way to get Coldfusion to not display this error when the URL in question is called?
I'm having a problem interoperating java and cold fusionI'm trying to follow the example code described here: http://help.adobe.com/en_US/ColdFusion/9.0/Developing/WSc3ff6d0ea77859461172e0811cbec22c24-786c.html But to no avail. 😞On the java side in my jsp I have: request.setAttribute("myvariable", "This");%> <% ((Map)session.getAttribute("myApp")).put("myVariable", "is a");%><% ((Map)application.getAttribute("myApp")).put("myVariable", "test.");%><jsp:include page="<%= urlstring %>"><jsp:param name="name" value="Robert" /> </jsp:include> Where urlstring was set to http://someurlOn the Cold fusion side I have: <cfoutput><h2>Hello #URL.name#</h2>Request.myVariable: #Request.myVariable#<br>Session.myVariable: #Session.myVariable#<br>Application.myVariable: #Application.myVariable#&
Hi,How to find an dpi of an image using coldfusion?is there any way to modify an images dpi using coldfusion?
Hi all,i have two cfc' components usind extends as:<!--- myParent.cfc ---><cfcomponent displayname="myParent" output="false"> <cfscript> this.myData = ''; </cfscript> <cffunction access="remote" name="setQueryData" output="false" > <cfquery name="this.myData" datasource="#myDatasource#"> SELECT * FROM myTable </cfquery> </cffunction></cfcomponent><!--- myExtend.cfc ---><cfcomponent extends="myParent"> <cffunction access="remote" name="getData" output="false" > <cfquery name="qryData" datasource="#myDatasou
I have a SQL Server 2008 database with a table that has an ID field that has an identity increment and seed of 1.This work great as each new record created automatically gets a new and distinct number.Now when I insert certain new records I need to be able to make that value start at 10001 and then the next would be 10002 etc.But this is only for certain inserts.Is there a way to control the identity seed & increment on the fly via a query maybe?So some inserts would follow 1,2,3,4,5,6,7 depending on whats being insertedand others would follow 10001,10002,10003 depending on whats being inserted.is this possible?
I have a page that uses cflayout to display data. Links in the page fires a cfwindow that also contains a cflayout tag. This works perfectly in all other browsers, including IE 10, but not IE 9 and below. It does not produce an error, it simply does not display anything at all. The window appears with nothing in it. Server side is CF9.01. Any ideas? Many thanks!
I created my FirstHomePage.cfm on the ColdFusion 10 Developer server.It works on the same server machine, but i got HTTP 404 error from other machine.I added IP Address on ColdFusion server Admin page to Allow IP address.I would like any configuration need to be done to let other machine acess the web page from the other machine.Your help and information is great appreciated,Regards,Iccsi,
I just finished applying the hotifx 4 for my 9.01 coldfusion 32bit server on a Unbuntu box and after restarting CF and Apache I noticed the Admin page comes up blank, otherwise CF is working perfectly.I checked the logged and saw thiscoldfusion9/logs# tail -f cfserver.log04/02 21:24:15 user CFCServlet: init04/02 21:24:33 user FlashGateway: init04/02 21:24:34 user MessageBrokerServlet: init04/02 21:24:41 user CFFormGateway: init04/02 21:24:41 user CFInternalServlet: init04/02 21:24:41 user WSRPProducer: init04/02 21:24:44 user ServerCFCServlet: initServer coldfusion ready (startup time: 41 seconds)04/02 21:25:54 Error [jrpp-1] - Element ESAPIUTILS is undefined in a Java object of type class [Ljava.lang.String;. The specific /var/www/CFIDE/administrator/index.cfm, line: 5504/02 21:25:55 [jrpp-1] INFO Using "/tmp/vfs_cache" as temporary files store. Error [jrpp-2] - Element ESAPIUTILS is undefined in a Java object of type class [Ljava.lang.String;. The specific sequence of fil
I was reading an article on Clustering/LB/HA using CF8, but have not found any updates for CF10.Using VM VirtualBox to setup a few virtual servers, I am looking to setup a load balancing of ColdFusion 10 on 2 remote instances. The goal would be have ColdFusion Cluster Manager be able to point http request to one of the two servers based on load/availability. Not really having a hardware cluster/failover setup, just managing resources on two CF instances instead of a standalone. The servers are Windows Server 2008 R2 with IIS7.5 and ColdFusion 10 Enterprise on installed on 3 of these machines. Let's call them CF-LBManager, CF-Web1, and CF-Web 2. In the CF Docs, they show the Cluster Manager adding the local CF instance and "if you want" a remote instance. However, this scenario would require the main instance to be running and not fail for it to direct to the other instance. I am trying to set this up now with CF-LBManager as just a manager of the requests coming in. In the Enterprise M
CF10 Local Dev MAC machine. Built in server.Nothing has changed in my Application.cfc. Cleared cache via admin pages, Changed Application.cfc/Application.cfm lookup order to all three settings. Restarted Server and computer several times. Changed Name of Application.cfc to 1Application.cfc and back.My pages are not seeing THIS.Datasource and if just try to output This.Name on blank page I get "Element NAME is undefined in THIS". I'm having the same issue as this post. But the fix isn't working for me.coldfusion application.cfc not foundNot sure what/how do trouble shoot further.
I am using CF9 on a virtual server so I have control over the stopwords.txt file.I presumed it would be as simple as adding my own words to the file, but it didn't go that smoothly.I search the CF folder and it found 5 files named stopwords.txt.Here is where they were found:H:\ColdFusion9\solr\solr\confH:\ColdFusion9\solr\multicore\core0\confH:\ColdFusion9\solr\multicore\template\confH:\ColdFusion9\solr\example-DIH\solr\db\confH:\ColdFusion9\solr\example-DIH\solr\rss\confI tried editing the first 3 (since the bottom 2 said example, I didn't edit those). I restarted the ColdFusion 9 Search Server and ColdFusion 9 Solr Service then rebuilt the indexes.The search still found the word I added.Advice on how to exclude words would be appreciated. If it could be done through a database table that I could create and give supervisor staff access to that would be even better than having to edit a server file, restart services and rebuild indexes.Thank you
Doubt I've named this right...Ok, here's what I'm trying to do:I have a CFQuery set up:<cfquery name="myQuery" datasource="someSource"> SELECT DISTINCT item_num, item_name FROM table1</cfquery>I know this is working fine. A little farther down my page I have a dropdown that gives a list of "item_name" entries. What I want to do is set another variable to item_num based on whatever is chosen in that dropdown. The item_name field is irrelevant to the rest of my page, it's just there to help out the end users with readability.How do I do this? It's kind of driving me nuts trying to figure it out.
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.