The official community for ColdFusion.
Nyligen aktiv
Has anyone experience with MongoDB and Coldfusion?I have problems to store a Date object correctly in MongoDB.I am using the Mongo-Java Driver.
Hello,Just after confirmation on how CF11 Enterprise licenses apply to AWS. From reading the terms, one Enterprise license would be required for an instance of up to 8 vCPUs.Is it possible to apply an Enterprise license to multiple instances, for example two 4 vCPU instances to make up the 8 vCPU allowance?I'm aware of the CF11 options available in the AWS Marketplace, just trying to evaluate the best option.Thanks,Chris
Hello,Has anyone else tried to use CF with Java 8 preview? If you have tried Java 8 preview have you noticed anything interesting?Something to share. Java 8 uses memory differently to Java 7 or 6 (reminder Java 6 is EOL). The non heap memory Permanent generation has been done away with and is now consumed in a new memory space called Metaspace. I guess that will mean CF folks will not see the dreaded “java.lang.OutOfMemoryError: PermGen space” in coldfusion-out.log anymore.For interested readers here is my CF10 Summary part:Server Settings > Settings Summary System Information Server Product ColdFusion Version ColdFusion 10,284825 Operating System Windows 7 OS Version 6.1 Update Level /C:/ColdFusion10/cfusion/lib/updates/chf10000010.jar Adobe Driver Version 4.1 (Build 0001) JVM Details Java Version 1.8.0-ea Java Ven
I have a website that has both Classic ASP and ColdFusion screens in it.I am moving the site from Windows Server 2003 to Windows Server 2008 R2 64-bit.One of the asp screen uses SA-FileUp to upload files, so I loaded the trial version of SA-FileUp onto the server to make sure it will work.I got the SA-FileUp function in the Classic ASP screen to work but the ColdFusion screens stopped working.I changed the IIS Application Pool "Enable 32-bit Applications" from True back to False and the ColdFusion screens work but the SA-FileUp function on the Classic ASP screen does not work.How can I get the ColdFusion screens and the screen with SA-FileUp in it to both work?
I am trying to install CF 11 on a windows 2008 R2 Standard SP 1 server (This is a new server that does not have any websites on it yet). The initial install has no errors and ask if you want to finish the install by going to the administrator. I click ok. It goes to https://hostname/CFIDE/administrator/enter.cfmThe webpage it goes to is titled "Configuration and Settings Migration Wizard" "ColdFusion has been successfully installed. This wizard will guide you through the remaining server configuration steps and, if applicable, migrate settings from a previous version of ColdFusion.To guarantee the security of your server, please enter your ColdFusion Administrator password. "I type in my password and it says it is invalid... I KNOW it is correct. I have uninstalled CF twice now with the same results. The page looks a bit odd though. The box is blue and the text is black. Making it hard to read. The test also looks to be pushed down a bit (Like an image would go there, but there i
I am working on calling web service from Cold Fusion 10 and ran into the following error:415 Cannot process the message because the content type 'application/soap+xml;charset=UTF-8;action=http://webservices.host.com/API/2012/10/SchemaService/GetSchemaBySystemName' was not the expected type 'multipart/related; type="application/xop+xml"'.I was able to run the same call using SOAP UI. Below is the code related to this call in ColdFusion:------------------------<cfhttp url="https://[hostname.com]/API/SchemaService?wsdl" method="post" result="httpResponse"> <cfhttpparam type="header" name="content-type" value="application/soap+xml;charset=UTF-8;action=http://webservices.host.com/API/2012/10/SchemaService/GetSchemaBySystemName"> <cfhttpparam type="header" name="Action" value="Apache-HttpClient/4.1.1 (java 1.5)" >  
I have a 64bit VM windows server running Windows Server 2008 R2.I installed Oracle drivers for both 32bit and 64bit. Have TNS for both setup for my Oracle database.The setup of the datasource, verified fine. The web application will connect fine to the database and works sometimes against it.But will error out at some point, error is: [Macromedia][SequeLink JDBC Driver]TCP/IP error, connection refused. The database is not the issue since this application and database is running perfectly on an older server that is being decommissioned.I had first tested with the Coldfusion trial version and everything worked perfectly without error. Problem appeared to be introduced after setting the license key. Also, in the trial version, I was not using the ODBC socket, but there was specifically an Oracle typeavailable. Help with this would be very much appreciated - I am stuck. Thanks Scott
Hello, I am trying to use CFC generator to generate ORM script cfc. I select tables from the RDS view, then enter location and then see the screen with tables where I can specify relationships. When I click on generate, I get an error message Error : Array index out of range: 5, where (5) is always number of tables displayed in the screen -1.
I have a MySQL named Natural Systems which is a magazine account that it member's will both sell handmade items wherein the proceeds will go into the Natural Systems account and each member also give a weekly donation. All of the proceeds will help toward the printing of the subsequent volumes. both of the selling of handmade items and the weekly dues happens during the same week or the same magazine volume number. I am trying to write a query that will pull both of the sales as well as the weekly dues payments weather they have paid or not. SELECT foiid, trim(concat(name.fname,' ',name.lname)) AS no_ns, nspayamt, DATE_FORMAT(nspaydate, '%m/%d/%Y') FROM name LEFT JOIN nspay ON nspayfoiid = foiid and volume = '27' WHERE nspayfoiid is null AND type = 'Registered' AND city = 'richmond' AND status = 'a' group by foiid ORDER BY no_ns This code will bring up the following names of those who did not pay weekly dues during volume 2: Christopher GabbMichael banksTimothy Ha
Is it possible to use markers/special identifiers in Cold Fusion? If possible how do I test for markers at the end of say a zip code. E.x. 11691XX( XX is the special Marker).
Hello,I am trying to remove all html from a user input string.something like this:<cfset string ="sample text &lt;a&gt;">I have tried:Replace(string , "<[^>]*>", "", "ALL")Replace(string , "&lt;br &##x2f;&gt;>", "", "ALL")Neither remove the html, can anyone help?
I don't know if this is even possible but thought I would put this out there and see. I took over a web design position. A few sites have some work that was done in ColdFusion8. I have found a link to a login for it, but have no idea about a password, and neither does anyone else in the office here. It seems to be an online application? I have updated the adobe profile for my email account, but that didn't help. Thoughts, ideas, suggestions?
Hello,I have some .cfc's that reside in the same directory as the .cfm file calling them. Everything works as expected, but now we are changing the structure of our web site and cfc paths are not working. I have spent hours trying to figure this out and still no solution. The current (working) path to the cfc is:wwwroot/data/historical/stateplane/select.cfcwith the domain looking like this:http://surveyor.website.org/data/historical/stateplane/select.cfcWe are changing our the structure to, (which throws an error when looking for the cfc):wwwroot/surveyor/data/historical/stateplane/select.cfcwith the domain changing to:http://website.org/surveyor/data/historical/stateplane/select.cfcThe sel_stateplane.cfm page has the following code calling the cfc, which lives in the same directory:<cfselect name="TOWNSHIP_RANGE" bind="cfc:select.getTownship()" bindonload="true" value="TOWNSHIP_RANGE" display="TOWNSHIP_RANGE" />But with the added /surveyor folder after the root, it no longer wor
I am tying to keep an already developed search running. I have no experience. Please help!My error is coming from here:<cfif trim(form.criteria) is not ""> <cfset collectionname="#form.p_collname#"><cfsearch collection="personify_methods" name="getMethods" criteria="#Form.Criteria#" maxrows = "100">Could some one please assist me?
We are running CF 11 Standard on IIS 8.5. I was able to make changes to the ColdFusion11\wwwroot\WEB-INF\web.xml and ColdFusion11/config/wsconfig/1/uriworkermap.properties and this works for East West Urban Managment with index.html in the address but if we don't have that in the address CF doesn't seem to know it should handle that page. http://www.eastwestfun.com/.What am I missing?
We are working on getting ColdFusion 11 to work with JBOSS EAP6.3, as a JEE/J2EE installation. The Coldfusion 11 has a CF Server Java Class Path and a Java Class Path. How can the Java Class Path be configured in this setup? Setting the JVM classpath with the -cp option appears to update the CF Server Java Class Path..
Hi. We are still running CF9 and have noticed that HTTPS calls to web services using the newer SHA2 algorithm fail. It appears that CF9 cannot support SHA2. Does anyone have a suggested patch for this issue. Obviously we need to upgrade to CF11, but that will take a couple weeks. Looking for an immediate work-around. We have two installations of CF9 - one enterprise and one standard edition. Any ideas?
At the final step "Configure Web Servers/Websites", it complains that - "Cannot configure IIS Connector. Enable the required options, ASP.NET, CGI,...". But, all ASP.NET, CGI, and ISAPI connectors are installed and configured. We have installed Coldfusion on over 40 servers, from version 7 through 11, and have not seen this problem before.
We just upgraded to CF11 in our development bed. We are seeing some of our web pages breaking due to what appears to be inserted css coming from ext-all.css. For example, in the body tag, an x-body and x-gecko has been added and is overriding some of our css. I looked in Firefox and the file (ext-all.css) appears in both "view source" of our development bed (CF11) and production (CF8) but the insertions are only happening on CF11. Is there a setting that needs to be set in order for this not to happen? Has anyone seen this before? Any assistance is greatly appreciated.
Hi all,Maybe a CF guru can help with this issue:https://forums.adobe.com/message/7397054#7397054What configuration can I check?Thanks
Hello,We upgraded from Coldfusion 9 to Coldfusion 11.System:OS: Windows 2008 r2 64bitRam: 16 gbSteps I took to do this upgrade.1. uninstalled CF 92. uninstalled current version of java3. reboot system4. install latest Java 1.8.x5. install Coldfusion 116. run coldfusion 11 updates7. configured all datasources and settings in cfusion instance. (didn't want to import from 9)8. test cfusion instance to make sure everything is working.9. create are new instances for the websites. (4)10. sign in to each instance and tweak settings.11. assign 1 site to each instance for testing.12. test the each site and make sure everything is still working.13. follow Adobe lockdown guide as much as we can.14 retest everything still seems fine.run 6-12 hours and I get random crashes.suddently get CF errors saying can't find includes which is a false error.in the coldfusion-out.log I get this when the issue happensJan 13, 2015 8:04:20 AM org.apache.coyote.ajp.AjpProcessor getRealPathFromServerSEVERE: Error in
I have a rarely used server that I now need to start using. I upgraded to CF 10 last year. I assigned a password and was able to add all the patches available. I logged out and haven't needed to login since. I am now having to set up another connection. When I attempted to login, I used the password that I had stored in a spreadsheet I have on the server; so I know it's good. I used the password reset tool in the bin directory. It asks me if I want to change the admin password or change admin component; I select change admin password. I change the password and verify it. It then asks me to change the RDS password, which I do. All examples I've seen show a message coming back saying it was changed. Mine does not give that message. Instead, after the RDS password confirmation, it exits the tool and the password is never changed. The one thing I don't really understand is why the pa
The results appear in a table and each row when clicked on shows detailed information. I'm trying to use the jQuery toggle so it can open the detail information under the persons name. The jQuery code I have is this...<script>$(document).ready(function() { $("#title").click(function() { $("#detail").toggle();});});</script>Then my cfoutput table is this...<table><thead><tr><th>First Name</th></tr></thead><tbody><cfoutput query="getRecords"><tr><td id="title">#getRecords.firstN#</td></tr><tr><td id="detail"><cfdiv bind="url:details.cfm?firstN=#firstN#" /></td></tr></cfoutput></tbody></table>Now what happens with that is all the detail records show up with the name and only the first row can toggle. Everything else doesn't do anything. Also is there a way to have the toggle show as close
I am running CentOS 6.6 with Apache 2.2.15. All were installed today, on a newly provisioned VMware guest.When I browse to http://10.213.42.200/CFIDE/administrator/ from my laptop, I get a 500 error. I read that I may need to access from localhost. So, I installed X windows and a desktop client, then connected to the VMware console for the machine and browsed to localhost. I got the same 500 error.This is a very vanilla install, and I can make any changes necessary. What suggestions do you have, or what additional information can I provide to gain an answer?
Hi,I am a novice in coldfusion, i have been using and learning dreamweaver, but i want to extend my knowledge to coldfusion11... i am having problem installing it and getting it up running.Can you guide me to install it and get it running.Sincerely,Chinedu.
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.