The official community for ColdFusion.
Recently active
I have the Thunder Beta installed as a standalone installation. I have also found this bug with Thunder installed as a plugin to EclipseSince using Thunder, I have noticed that my undo buffer is not working correctly. I get around 25-30 undos before Eclipse will no longer undo anything further.The undo history size setting defaults to something like 200 and I have tried upping it to 1000 to see if it helped.It doesn't seem to matter what I do, but I can only undo 25 or so actions before I can not undo anything.This happens with imported projects as well as new ones. Existing cfml/cfc files as well as newly created ones.
Hello,We are trying to create verity collections in CF9 and have successfully done so in the past. For some reason we are now getting errors and have not been able to find a resolution. Here are the errors:Error E0-0720 (I/O Filter): Could not load filter 'flt_kv -recognize -bifmime' which is named in your style.uni file.Warn E2-0527 (Document Index): Document 1 (140128011): Stream error (-2) - SKIPPINGWe can see in the debug info that verity is reading the database because the read record counts seem to be correct. We have played with file permissions, deleted the collections, uninstalled/re-installed Verity, still to no avail.Coldfusion 9CentOS 6Thanks in advance for any help offered.Best regards,Shannon
went through our update cycle for our CF 10 admin for the latest updates. We are now receiving the following error:"Error invoking CFC /CFIDE/Administrator/updates/download.cfc:internal server error [enable debugging by adding 'cfdebug' to your URL parameters to see more information]"Now the issue here is that even when ?cfdebug is added nothing comes up but the error.We have a non-standard configuration for our administrator, it does not reside in the the root as it kept making our compliance scans fail. to resolve we had to move the administrator to our c:<newfolder>, so that the administator would not fail our scans because of the password being passed in plain text.Per the error we have checked to make sure that the download.cfc is in the proper location and has the proper permissions and access.After the updates we now receive the above mentioned errors. any assistance in resolving would be great.thanks in advance.
I've been having this problem recently with our server and I've never seen anything like it before. I'm hoping someone in the community might be able to give me some guidance...We run a ColdFusion 10 Standard server (recently patched with update 12), which handles about 30 requests per second on average.Lately, we've been experiencing some very odd performance issues, so I've been leaving FusionReactor open on my screen pretty much all day long. And what I've noticed is really bizarre.Periodically, the metrics graphs will show a drop-off in requests from the usual 20-40 to 0. This last for about 5 seconds, and when the requests come back, they shoot right up to the max (our server set its max at 100). It's almost as if something is blocking the requests from getting through for those few seconds, and then we get flooded all at once. Either that, or FusionReactor isn't properly recording the traffic. At one point this morning this was happening every
For years I have used one script that I found in a Ben Forte book to build membership-based ColdFusion sites. For some reason this Application.cfc script no longer works in IE9. I can still create login based sites using IE8 and Firefox with this very same script, with no problems. My question is two-fold: 1) Is this the proper way most people are still building membership-based CF sites, and 2) If this way is still acceptable, is there some workaround for IE9.Overview of Application CFC script:At each page request the Application.cfc file checks to see if the user is logged in. If true it brings up the requested page. On initial login, this Application.cfc file which sits in the members only folder allows only certain pages to be run, mainly the loginscript page to allow the user to initially get to the members only section. After that, the user can only reach other pages when Session.LoggedIn is true; otherwise they get kicked out to the homepage.I have left out the DB calls and othe
Hi everyone,We are a small shop and will be purchasing CF10.The reg key however will take 48 - 72 hours to arrive and our customer wants this asap.I was thinking of installing the trial version and setting up the system but do not want to do this twice.Can the trial version be transformed into our production version by simply applying the reg key or will it be a complete re-install?Thank you and,Cheers, JK
Courious how to use it for some sort of proxy validation into the oracle 10/11 database.Anyone using it?Also interested in knowing anything about "Log Activity" and "Log database calls to _______________"???
G'day,So we have a nice little aplication running on CF10 developer that has been built for approx ~5 users (more as we progress) on the local network (not on the internet) to update product details/quantities/schedule tasks/some pdf manipulation ect. Fairly basic stuff for the most part.I'm trying to get some clarification on the differences between CF10 Enterprise & CF10 Standard before purchasing. Google is not much help, neither is Adobe Customer Support. So we currently have the developers edition of CF10 which enables all the Enterprise features however this isn't really helping because we are looking at purchasing the Standard edition (to begin with). The particular questions I have in regards to "Coldfusion 10 STANDARD" are as follows & require some expanding on other than "Restricted" or "NOT AVAILABLE". Bolded questions definately requiring some expanding on.Gateway architecture Data services messagingAsynchronous CFML gatewayTCP/IP socket gatewayChaining of sch
Hi all!We have a really strange problem on our newly installed W2K8 servers with CF9. A short overview of the set up:Server: W2K8 64-bit, IIS 7.5CF-server: CF 9,0,1,274733 Standard EditionThe problem is that while htm-files is secured by folder security, cfm-files in the same folder are accessible for all users. We've disabled "Anonymous Access" and enabled "Windows Authentication" (with NTLM as first enabled provider) in IIS.When monitoring the http-requests made for both the htm- and cfm-files we can see that both files behave the same in the two first steps of NTLM Authentication (as described here) but when the htm-file responds with a login prompt in step three (if you're not authorized), the cfm-file responds with a 200 response and the security rules of the folder/file doesn't seem to matter at all.We've searched around the net and can't really find anything like our problem. Does anyone have a clue about what's going on here? Please let me know if you need more information.Than
how to change web server from inbuilt Tomcat to IIS in already configured Cold Fusion 10
Can you search pdf's using coldfusion 10
I wrote this in cfm:<span class="test"><cfclient> <cfset variable1 = 10> <cffunction name="test1"> <cfoutput>#variable1#</cfoutput> <cfset variable1 = 20> <cfoutput>#variable1#</cfoutput> </cffunction> <cfset test1()></cfclient></span>and observed that the script tag is generated containing the following code:globalDivStruct = null;var _$test_func = function () { var self = this; var variables = {}; self.test = function () { var localdivstruct = globalDivStruct; var __output_var = ""; &
Whenever the application sees <cfclient> tag it generates a <script> tag for the same. Is there anyway you can generate a JavaScript file instead of returning the script tag in the response? This will certainly improve the performance of the application.
I've recently started using CFwheels. I am trying to update a database item by ID. Usually what I would do is have a hidden form field that passes an ID number in the value. Then I would run a query something like SET WHERE ID=#ID#. First problem...I am not sure how to set the value on the input control...I have - #checkBox(objectName="reqequip", property="#serial#", defaultValue="#serial#", label="")# #hiddenField(objectName="reqequip", property="#serial#", label="")#Which prints out this below. I thought property argument is supposed to define value but it is not. And also I do not even know where the 3rd item is coming from as I only have two form fields. <input id="reqequip-testatawetg" type="checkbox" value="1" name="reqequip[testatawetg]" defaultvalue="testatawetg"> <input id="reqequip-testatawetg-checkbox" type="hidden" value="0" name="reqequip[testatawetg]($checkbox)"> <input id="reqequip-testatawetg" type="hidden" value="" name="reqequip[testatawetg]" label=""&g
HiI'm runing ColdFusion 9.0.2 dev edition and I would like to setup a remote solr server. I setup 2 solr servers to test this:One with apache-solr and tomcat One with solr and jetty In the CF admin pannel I put the remote server info and submit the changes but it wont show the collections (not matter wich solr server I put). If I create a new collection it will show an error Unable to create collection test1. Unable to create Solr collection test1. An error occurred while creating the collection: java.lang.RuntimeException. Check the Solr logs for more detail.there are no errors in the logs and I can see the new collection in the solr server but not in CF adminI believe I'm missing something in the CF server so any ideas would be appretiatedPS: Im runnin a 30day trial license to test this but I dont think it has a limitation is it?
I need to link to a URL that has a right single quotation mark in it (u+2019).This is it: "/News/Case-Studies/UNICEF-Headquarters’-Redesigned-Lobby-Space"When I paste the link in to a browser, it works.When I create a link with this URL as the href and click on it, it works.When I put it in a <CFLocation> tag, it does not work. I need to make this work.When I take the URL from a browser address bar and paste it into a text editor, it converts the right single quote to the percent-encoded string "%E2%80%99". I have not been able to recreate this encoding. URLEncodedFormat() yields a completely different string.When I parse the url and note the ASCii value of each character, I get three characters for the right single quote: 226 8634 8482.I came up with an encoding that worked, but resulted in special characters in the address bar of the browser (don't remember what the technique was at this point).What encoding can I perfrom at the CF server to duplicate the prop
I'm trying to use a JNDI data source in CF 10. We used to do it in CF 8 in the JRun admin, and was able to use data sources across coldFusion and java code. Any ideas on how to make it work in CF 10? I've tried several online resources, setting up a resource in Context.xml: <Resource name="mydatasource" auth="Container" type="javax.sql.DataSource" maxActive="100" maxIdle="30" maxWait="10000" username="myuser" password="mypass" driverClassName="macromedia.jdbc.MacromediaDriver" url="jdbc:macromedia:sqlserver://127.0.0.1:1433;databaseName=mydb;SendStringParametersAsUnicode=false;SendStringAsUnicode=false"/>then a resource-ref in web.xml<resource-ref> <description>DB Connection</descri
Dear All,May I know the min system requirement installation of ColdFusion 8 Application Server? Can it install & run in Windows Server 2008 with IIS 7.5?Which supporting library / software is required if any (such as Java?)?Also, is it possible to export all settings in ColdFusion 8 Server and import to the new one?
I have a ColdFusion front end/Oracle backend application I inherited from the company that lost the contract to my company. In one screen, there is a field the customer wished to increase from NUMBER (10,3) to NUMBER (10,8). After researching and conferring with the Gov't DBAS supporting the production and test systems, it was suggested that I just alter the field to plain NUMBER, I did so on my Development system and changed the CF code to allow for proper display. It worked quite well. I had the Gov't DBAs change the field in the production and test databases to match. I then FTP'd the CF code to the test system. It allows for entry and initial display of the new field size, but upon saving it (unlike my Development test) truncates/rounds up (i.e.- 123.87654321 becomes 123.87700000). I have ensured the proper code is there and verified with the Gov't DBAs that the databases matches my Develop database. What
We are currently developing a Coldfusion application where one of the requirements as set by the client, is that it should be distributed as a deployable EAR file. Our plan is to develop the application locally and then generate the EAR file using the Coldfusion Administration (or a custom ant script) and distribute the Coldfusion EAR application to our client. The licence in the EAR would be the Developer Licence since the client would be using his own Coldfusion licence. Our concern is whether the Coldfusion Developer Licence legally allows us to distribute the solution as an EAR. Using a CAR file is out of the question.
I am learning CFwheels recently. Am able to print out all my items from a database in a loop with this line in a controller..<cfset queryall = model("equips").findAll(order="name")>But I want to make a query where it only returns items in that database where status = "In". I tried this...<cfset appequips = model("equips").findAll(WHERE "status=In")> But I am getting an "invalid construct" error. The documentation says to do - <!--- Including an association (which in this case needs to be setup as a `belongsTo` association to `author` on the `article` model first) ---><cfset articles = model("article").findAll(where="published=1", order="createdAt DESC", include="author")>I am not sure what they mean with the "belongsTo" association... My whole function in the "equiplist" controller (everything outside of the line with WHERE is for something else though and working fine).<cffunction name="equiplist"> &nb
the docs say there's a single thread that watches the directory. But say for example it finds 3 files and calls the cfc. At that point do all 3 files run one at a time on a single thread in the order they came in, or do they run at the same time on multi-threads?
how to get <cfsearch> to search one collection in CF 10
I am in the process of creating a search engine in coldfusion. I can't get the search engine to pull the pdf files when trying to do a search. I created a collection in cold fusion administrator.
We are having a issue where ColdFusion maxes out the CPU. It will remain that way until we restart ColdFusion. This has happened a few times before but the last time it completely hung and displayed the site wide timeout page as plain text exposing the ColdFusion code. We did update the web server connectors after installing update 12. I've looked in so many log files and seen so many things using windows process monitor that I'm not sure if I missing something important or focusing on the wrong erros.This post on the forums describes what we have been dealing with. http://forums.adobe.com/message/5878493I'm found these errors being thrown while this was going on. isapi_redirect.log errors [10520:14316] [error] start_response::jk_isapi_plugin.c (1158): HSE_REQ_SEND_RESPONSE_HEADER failed with error=87 (0x00000057)[10520:14316] [error] isapi_write_client::jk_isapi_plugin.c (1283): WriteClient failed with 1229 (0x000004cd)[10520:14316] [info] ajp_process_callback::jk_ajp_common.c (1992):
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.