The official community for ColdFusion.
Recently active
Im using CF MX7 for my website. And since this version doesn't support cfimage tag, I looked for other helpful CF commands to resize photos. Then I found this imagecfc object. It somehow helped but not for long. Since it constantly giving out of memory errors to users, I decided to abandon it. Now here's the problem. Some users (not all) uploading photos in my site were still able to resize photos although I have removed that CF component to my code. How did that happen?Please help. And do you have any suggestion to how to resize photos in MX7?
I'm trying to get a form with three connected <cfselect> statements. The code works in all browsers except IE. Does anyone have any suggestions.When it runs in IE I get the following error.bind: Bind failed, element not found: specGroupIDbind: Bind failed, element not found: specCategoryIDCFSELECT Code:<cfform name="specCategories" id="specCategories"> <ol> <li> <label for="categoryID">Category</label> <cfselect name="categoryID" id="specCategoryID" &n
i am a little confused with CF10 as far as how to configure the CFAdmin such that it displays error messages in the browser. Is it possible to display error messages in the browser to specific IP addresses, but show all other users standard error handling messages?
I'm using CF 8 and have a simple script that uses cfexecute to invoke a FoxPro executable that resides on the server. The server is a Windows 7 machine, and when I call the script from the browser I can see the process running in Task Manager but it is hung and doesn't do anything. I have to manually kill it. No errors are being generated that I am aware of - no errors reported in the Event Viewer or in Process Monitor. Coldfusion is running the process under the System account, so I think it should have plenty of privileges. The cfexecute statement is: <cfexecute name = "C:\Temp\Simple.exe" arguments = "" outputfile="c:\temp\Simple.log" timeout = "30"> </cfexecute>Any help will be appreciated.
Hi,The Server monitor in ColdFusion 10 is showing the Cached query count as 12212 (and rising) even though the Maximum number of cached queries is set at 9000, how can I stop the actual Cached Query count from exceeding this limit and just exponentially growing?Many thanks,Chris
This question was posted in response to the following article: http://help.adobe.com/en_US/ColdFusion/10.0/CFMLRef/WSc3ff6d0ea77859461172e0811cbec22c24-7c6e.html
I just installed cf10, in developer mode with the stand alone server, on my window7 machine. I can access the admminstrator/index.cfm or homepage.cfm from CF and they view fine. When I access one of my previously generated index.cfm page, none of my external css stylesheet settings work. Infact I tried adding the css setting directly and linked an image directly, nothing is showing. This is my path: C:\ColdFusion10\cfusion\wwwroot\CFIDE\HTML\clarkmedia\index.cfmWhat am I doing wrong?
I'm working in my dev environment on my macbook pro. It is setup like this:CF 10 and sql server running on parallels 8. I run cf builder on OS X along with Cornerstone for Subversion control All my web files are located on my mac os x hard drive. My web app has several forms in which you can upload files. I can not seem to figure out the right path to put in the destination field for cffile. I have tried /path/to/location/ format but it does not work. Any ideas?Thanks in advance.
Two machines, both fresh ColdFusion installs. Set up a Gateway Instance named cfflexgw. Point it to a working CFC and the local cfg file. When I send a simple message to the gateway, I get the following error:Unable to find the Flex adapter for destination ColdFusionGateway in the RMI registry on localhost:1099. Multiserver 9.0.2. Using the base cfusion instance, and I did not alter any of the xml config files yet. This code worked on 9.0.1 (and is still working) in OSX 10.7. I also tried a stripped down CFC and message. Any help yoiu can provide is appreciated! Remoting is working fine BTW, just not sending message from CF via the ColdFusionGateway.Thanks,Nic
Hi.I've created a simple class in Scala and packed it into a .jar file. I have no problems loading it into ColdFusion and running its methods.Here is a copy of cfdump of the created object:object of example.HelloWorldClass Nameexample.HelloWorldMethodsMethodReturn TypeCountry()example.HelloWorld$Country$cn()example.HelloWorld$CountrycountriesList()scala.collection.immutable.ListcountriesMap()scala.collection.immutable.MapgetCountryByCode(java.lang.String)scala.Optionja()example.HelloWorld$Countryru()example.HelloWorld$Countryus()example.HelloWorld$CountryBut I have problems with isInstanceOf function with this object. If I run:HelloWorldApp = CreateObject("java","example.HelloWorld");writeOutput(isInstanceOf(HelloWorldApp,"example.HelloWorld"));I get false as a result, but it should be true, right? The class does get loaded properly by CreateObject function.Is there a workaround? The cfdump tag somehow manages to get the proper type of the object which it displays in the Class Name fie
I install CF 10 on my Win 7 64 bits Home edition which works fine for a while.I just got the error message while I want to access it "Service Temporary Unavailable!The server is temporarily unable to service your request due to maintenance downtime or capacity problems. Please try again later. Jakarta/ISAPI/isapi_redirector/1.2.32 () I tried to reboot computer, but get same error message.I would like to know how to find the problem and to fix the issue.Your help and information is great appreciated,Regards,iccsi
I have a new Windows 7 Ultimate x 64 dev machine. I installed IIS with the .NET Extensibility, ASP.NET, CGI, ISAPI Extensions, and ISAPI Filters checked. Then installed CF10 64 bit and ran the Webserver Configuration Tool telling it to install All websites and allow 32 bit. I ran the mandatory manual update, then the automatic ones.I create an index.cfm in the default website and can hit it via localhost/index.cfm. Things seem good. I then create a folder called "greg" and an index.cfm in there. I can hit it via localhost/greg/index.cfm. I have a domain pointed to my location and forwarded port 80 to this server. From outside I can hit greg.mydomain.com and I get the index.cfm GREAT! But if I specifically go to greg.mydomain.com/index.cfm I get a 404 error. I CAN however hit the index.html in that dir like this greg.mydomain.com/index.html.What does this mean?
This thing work? Trying to configure a connection with Apache and keep getting that mod_jrun22.so connector problem that seems like people run into. Wondering what the latest is with this?
I've been trying to get a longer summary from Solr in CF10.In CF9, I had to stick with Verity due to the very short solr summary length. Now I don't have that choice.I'm very happy with Solr's speed, but need a longer summary.The doc shows several attributes that would seem to make a difference ( contextPassages, contextBytes ) but they don't seem to have any affect.FWIW, I also tried contextHighlightBegin and contextHighlightEnd, and they didn't seem to work either.Am I doing something wrong? Has anyone made these to work?Your helpful reply is appreciated!- Don
GreetingsThere seems to be no easy way to accomplish this without javascript/CF with dozens of lines of code.The scenario: table 1 has banks, table 2 has loan processors. Client chooses bank from DDSB, only the processors from that choice show up in the second.Processor table has FK relationship to bank PK.ColdFusion 9.0.1, Microsoft SQL Server 2008 R2 Is there a simpler solution?Thanks and have a great New Year.
This question was posted in response to the following article: http://help.adobe.com/en_US/ColdFusion/10.0/Developing/WSe61e35da8d318518-106e125d1353e804331-7fff.html
Is it possible to setup CFBuilder so files opened in Windows explorer open in the currently open instance. The final release tries to spawn a new instance and displays "Workspace in use or Cannot be Created". I got around this in Beta's but i can't find a workaround in the final release.
Hello all,My 1st post so please be kind. I am trying to set up a datasource in my CF Admin console to an Oracle Database. Oracle does not appear as a Drive type in my dropdown list. Now I did read on the forum (see I did have a look before posting) that the oracle Driver does not come with the Std edition. So I have installed the Oracle Client, and under Java and JVM put a CF Calss Path pointing to the ojdbc6c.jar file.I have read other bits and bobs on the net that you can use the "Other" datasource to connect to oracle but I get "No Suitable Driver" error messages when I try that.So just looking for help to make Oracle appear as a Driver I can select, or how to correctly configure "Other" to make it work.Many thanks.Regards,Stevie
This question was posted in response to the following article: http://help.adobe.com/en_US/ColdFusion/10.0/Developing/WSc3ff6d0ea77859461172e0811cbec22c24-7880.html
Hello, I have tried a few times to install the mandatory update on CF10 following the instructions via cmnd prompt cd to C:\ColdFusion10\hf-updates where the downloaded cf10_mdt_updt.jar is locatedexecute c:\ColdFusion10\jre\bin\java -jar cf10_mdt_updt.jarThe intsaller runs fine and steps through the requisit steps - shuts down CF server fine - then commences to install only to freeze completely very early in progress bar. Im required to shut it down via the task-manager.I have tried many times... even reinstalling CFDoes anyone have any suggestionsIIS7.5Windows 7sp1CF10 Standard (and developer)
This question was posted in response to the following article: http://help.adobe.com/en_US/ColdFusion/9.0/Developing/WSc3ff6d0ea77859461172e0811cbec22c24-7880.html
I may have stumbled onto a bug when caching queries in ColdFusion 10. I wanted to see if anyone else had seen this before I submitted a bug report. It will be difficult to put together a complete test case, so hopefully a description will be enough to confirm if this is reproducible.First, I create an array of structures. Each structure is a set of key/value pairs of arguments that will be passed to a query. The first two keys hold numeric values, the third a string value. I am querying a Microsoft SQL Server database. My query is inside an array loop. The query has the CachedWithin attribute set to 1 hour. In the query, I pass the values in the structure into the WHERE clause using CFQueryParam.If two of the sets of numeric values are similar enough but not identical, ColdFusion will jumble the values and pull back an incorrect cached query result set. As an example, here are the values in my array:[{BookNo=97,PageNo=1,MapType="Assessor'
I am on Mac Mountain Lion, but that shouldn't make a difference.This is for a clients website, so I need to get this working ASAP.Any advice on how to get CF 10 working with this setup, only serving .html files that contain CFML?So far I have tried:1. Adding /*.html = cfusion and /*.htm = cfusion to my uriworkermap_cfusion.properties file.2. Adding .htm and .html to the AddHandler jakarta-servlet .cfm .cfml .cfc .cfr .cfswf line in my apache conf file..cfm files and CF Admin render correctly, but when I call a .html file that contains CFML I get a Tomcat error saying the requested resource is not available.Thanks for any advice on this, I am out of ideas.I've had no trouble getting this to work on Windows, IIS and CF10.
Can someone show me the correct way to reference a Session variable called "SESSION.kt_email" and filter it out of my User_email list?- The CFC below is used to grab all of the correct emails, but "exclude" the email of the logged in user- I'm using the GROUP_CONCAT so the outputted emails are separated by commas- My CFC works fine until I add in the Session stuff, then I get this error..Here is the CFC email_actions_updated.cfc: ----------------------------------------------- <!--- Generated by Adobe Dreamweaver CS4 10.0.0.4117 [en] (Win32) - Thu Dec 20 2012 16:57:12 GMT-0600 (Central Standard Time) ---><cfcomponent> <cffunction name="GetEmails" access="remote" returnType="any" output="false"> <cfargument name="id" type="numeric" required="true"> <cfargument name="kt_email" type="any" re
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.