The official community for ColdFusion.
Recently active
I understand Adobe is a big company, and the bigger you get, the more disorganized your website becomes. But I HATE using their website! Not only are searches prone to just spew out a myriad of useless non-related links, but the main navigation can't take me to where I want to go either.Anyways, my CF10 servers are barking at me about Update 9 being out. They tell me to login and click the READ MORE link for more information (which takes me to http://www.adobe.com/support/security/bulletins/apsb13-10.html); but guess what, there's next to no information whatsoever on the page that outlines what this update addresses.Look at this page, for ColdFusion 10 Update 1:http://helpx.adobe.com/coldfusion/kb/coldfusion10-update-01.htmlBEAUTIFUL. Outlines individual bugs that were resolved, and one could think that from here, I could just change the '01' in the URL to '09', but no. It's not that simple.So can someone have pity on a person who's been trying to find the
Hi,i am using cf mx 7. I have done some reading about this and not sure about the templae attribute. I see some examples from live document with format PDF and wonder what is myreport.cfr?<cfreport template="myreport.cfr" style="mystyle.css" format="PDF"> <cfreportParam subreport="subreport1" style="subreport1-style.css"> <cfreportParam subreport="subreport2" style="subreport2-style.css"> </cfreport>I created the Report.xlsx at the same location where i have cfm pages with the syntax below. Either one below still give me an error<CFREPORT format="Excel" template="Report.xlsx" query="#myquery#"/>OR<CFREPORT format="Excel" template="#GetDirectoryFromPath(GetTemplatePath())#/Report.xlsx" query="#myquery#"/>Error:The reportCFC file D:\Inetpub\apps\Report.xlsx does not exist, or could not be found. any one got any advice?Thankskt
Any assistance would be greatly appriciated, thanks in advance.
Hi,I there an easy way to process a calculation that is in text form as in:"2567 + 82736""1000 * (27363 / 38374)""3434 + 34334 + 34332 + 83938"Or do the strings have to be parsed and processed that way. I was hoping there was a way to evaluate the calculation?thanks.
Today I restarted Macromedia JRun CF server. When I ran my application it throughs 500 Internal Server Error.Error Message:ROOT CAUSE: coldfusion.server.ServiceFactory$ServiceNotAvailableException: The Monitoring service is not available. at coldfusion.server.ServiceFactory.getMonitoringService(ServiceFactory.java:221) at coldfusion.CfmServlet.service(CfmServlet.java:180) at coldfusion.bootstrap.BootstrapServlet.service(BootstrapServlet.java:89) at jrun.servlet.FilterChain.doFilter(FilterChain.java:86) at com.seefusion.Filter.doFilter(Filter.java:169) at com.seefusion.SeeFusion.doFilter(SeeFusion.java:1500) at jrun.servlet.FilterChain.doFilter(FilterChain.java:94) at coldfusion.monitor.event.MonitoringServletFilter.doFilter(MonitoringServletFilter.java:42) at coldfusion.bootstrap.BootstrapFilter.doFilter(BootstrapFilter.java:46) at jrun.servlet.FilterChain.doFilter(FilterChain.java:94) at com.seefusion.Filter.doFilter(Filter.java:49) at com.seefusion.SeeFusion.doFilter(SeeFusion.java:1
How to include CKeditor instead of FCKeditor? Here we have a requirement to remove the old one. Please explain it briefly and the steps to configure the same. Thanks in advance.
Windows 2008 Server , IIS 7 , SQL Server 2012 and ColdFusion 10/9 . In ColdFusion 9, I had all my datasources using integrated authentication by running the ColdFusion Application Server under a windows account and then giving that user account access to the databases. Then while creating the datasource just leave the username and password blank and voila it connects. By doing this I could stick with the Windows only authentication policy for SQL Server and did not have to enable any SQL logins. When I migrated to ColdFusion 10 none of the datasources work anymore in the same scenario. It gives a JDBC error. I double checked the services and made sure that the ColdFusion Application Server process is running under the correct user but no luck. Has something changed ? Thanks
I'm looking to purchase ColdFusion 10, but am unsure how many copies I should order. We want the software on two virtual servers that will be running simultaneously (one intranet/one external). The FAQ is a little confusing with the '2 CPUs." Does anyone an answer for this?
I have an app on a CF 8.01 server that uses CFHTTP to call the Google AdWords SOAP API via SSL. It recently started throwing errors on the CFHTTP calls, apaprently due to a bad cert for the adwords site - The ErrorDetail in the CFHTTP results is "I/O Exception: Name in certificate 'google.com' does not match host name 'adwords.google.com'"In the past when I've had an error like this, all I needed to do was to browse to the WSDL URL for the SOAP service, download the new DER format cert, run keytool to import it, restart, and that was that. I did that this time, and it didn't change the error. The results of the keytool import were successful - I can do a -list and see the new cert info. I also made sure to restart CF after each keytool import.I have another server that is running CF9, and when I move my code over to it, it runs just fine, so I figured it must have a more recent certstore. but when I dump it's certstore with -list and look, there are no certs in it for
I am in the process of moving several sites from MX7 to CF9. This is my first experience with CF9 and migrating so I am wondering if I am just missing something obvious.I have one site that works fine in FireFox, Chrome and Safari but just will not work in IE.The site requires a login and authenticates the user name and password against Active Directory using the CFLDAP tag.In FF, Chrome and Safari I can log in, navigate all around, add/edit/delete records, run reports, etc. with absoultely no problems.But IE won't work. I can do the initial login and get to the home page but when I attempt to navigate to another page in the site it goes back to a login screen. It used to work in IE when it was on the MX7 server. But since moving it over I can't access it with IE. I did run Code Analyzer on the files when I moved them over to the new server and Code Analyzer only found a few minor errors that I resolved. Are there some special settings or Application.cfc entries that are needed f
Currently CFID and CFTOKEN appear in the URL of certain pages, such as 404.cfm. I do not wish for those parameters and values to appear in my URLs. I thought by setting setClientCookies to false that would resolve the issue, but I guess I'm mistaken that setClientCookies does that?I restarted the ColdFusion server after making the code change to application.cfcI'm using CF9 on my local machine.<cfset THIS.name = "myLocalTest" /><cfset THIS.ApplicationTimeout = CreateTimeSpan(2,0,0,0) /><cfset THIS.SessionManagement = true /> <cfset THIS.SessionTimeout = CreateTimeSpan(0,0,30,0) /><cfset THIS.setClientCookies = false />Am I missing something?Thank you!
Is there documentation on this? We have CF10 installed on one Linux server and would like to connect it to Apache installed on a second Linux box.
Since cfloginuser is to login web server,I would like to know do I need create user ID and password at CF10 server or just use my table to check if user ID, and password are correct then assign user role.Your information and help is great appreciated,Regards,Iccsi
I can use Application.Datasource to assign a datasource for the application.I would like to know the web site can only has one datasource.If my web site has more than one database on the different database server then am I able to assign the second datasource for the application or I need to assign every time if I have more than one datasource for the application,Your help and information is great appreciated,Regards,Iccsi
Hey Everyone, I have a very basic app that plugs data into a stored procedure which in turn returns a recordset. I've been experiencing what I thought were 'timeouts'. However, I'm now no longer convinced that this is what is really happening. The reason why is that the DBA and I watched sql server spotlight to see when the sproc was finished processsing. As soon as the procedure finished processing and returned a recordset, the CF page returned a 'timeout' error. I'm finding this to be consistent whenever the procedure takes longer than a minute. To prove this, I created a stored procedure with nothing more than this:BEGIN WAITFOR DELAY '00:00:45'; SELECT TOP 1000 * FROM AnyTableNameENDIf I run it for 59 seconds I get a result back in CF. If I change it to on minute:WAITFOR DELAY '00:01';I get a cfstoredproc timeout error. I've tried running this in different instances of CF on the same server, different databases/datasources
I am hosting a web service on my production server. I have been unable to call it remotely. So I tried calling it from the Prod server via url instead of component, and it fails.<cfinvoke component="xcom.xcomServices" method="couponProcess" returnvariable="coupRet"> <cfinvokeargument name="theCouponSource" value="normal"> &nb
I have been having issues with my titles not showing up on my CF pages. I finally looked at the page source in the browser and found that CF is inserting extra <html>, <head> and <body> tags at the beginning of the pages. (see samples below). I'm pretty sure it is the CF engine that is doing this because I took a cfm page and just changed the extension to html and everything worked fine (except the CF code). There weren't any extra tags inserted and the titles was displayed. I also noticed that the CF engine appears to be adding the very first line <!DOCTYPE HTML ...>Does anyone know why this might be happening?ThanksDavidCF Page - notice extra tags in red<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><html><head> <title>Untitled</title></head><body></body></html><html><head> <style type="text/css"><!--BODY{ font-weight: normal; font-size: 10pt; font-family: Arial; backgro
CF 8,0,0,176276 Jrun downloading malware, will update of hotfix help?
I'd like to add clickable expanding/contracting text areas to my pages, as in the default is showing the short description, and clicking shows the long one.Is there any tag in ColdFusion that facilitates that? (I'm a bit rusty on my coding skills, as you can tell . . .)Karen
CF10 Standard Edition 64 bit, Windows 2012, IIS 8. Initially I installed the CF10 before moving the CF8 sites to the new server. I added the IIS and DNS records manually ahead of moving the site files to minimize downtime. Done this before. Lots of 404 Page not Found errors until we learned that every domain needed a virtual directory for CFIDE and jakarta. A few of the domains started to take shape, but eventually the CF Admin went blank. No error, no login - gone.This morning I uninstalled and reinstalled CF10 and noted that all of the IIS entries had the virtual directory mapping included if they hadn't alreaday. But still no CFAdmin, which makes everything else kind of pointless. Instead of going forward, we punted and reactivated the old server where the CF8 chugging along which keeps my clients happy. Because I cannot login to the CFAdmin, I cannot tell you the build version was but I did purchase it on April 3rd and downloaded it the same day so I'd hope the install exe wa
This question was posted in response to the following article: http://help.adobe.com/en_US/ColdFusion/9.0/Admin/WSc3ff6d0ea77859461172e0811cbf364104-7fd0.html
This question was posted in response to the following article: http://help.adobe.com/en_US/ColdFusion/10.0/Admin/WSc3ff6d0ea77859461172e0811cbf364104-7fd0.html
CF10 on IIS 7I have a webservice set up that needs to be called from a remote server. It is set to access="remote". It works fine when called from the local machine. But calling it from a remote server fails. I can perform an HTTP Get and pull down the WSDL from the remote machine, but when I attempt to invoke the web service remotely, I receive the "Could not find the ColdFusion component or interface...." error. The incredibly odd thing is that if I intentionally break the CFC, outputing an undefined variable or something, the error is returned to the remote request!Is there some new setting that I must change to allow for remote invocations?This is on a PCI compliant subnet. Could firewalls be blocking the CFC interaction? Do CFC's return on a separate port or something? Could the headers be blocked?
We have a production system currently running on CF9 and we're attempting to migrate everything to CF10 and ran into some wierd issues. 1) we have alot of CFC's in our application that are accessed by various .net applications via webservice. for some reason, invoking the webservice call just hangs on the CF10 server. we see it as a unresponsive request. it seems to time out after 5 or 10 minutes. 2) we have a couple of .NET implemented webservices provided by 3rd party vendors for payment processing. when we did CFIDE archive/deploy from CF9 to CF10 to get these into CFIDE, they imported. however when I refresh on one of these, I get error "Variable WS not defined line 233" in CFIDE/extensions/webservice.cfm in the application log. if I delete the webservice entry and try to readd it, "Error creating web service. Please ensure that you have entered a correct Web Service name or URL." with n
I created a datasource from my CF admin using JDBC/Oracle Thin Client. The datasource creation was successful.When Oracle encryption is configured as "Requested" I can browse my CF app. and ran many functionalities with no problemBut when the Oracle encryption is configured as "Required" the connection failed.The way I tested and know that it was failed was when I login in to my web app. It won't log me in. But when the Oracle is switched back as "Requested"I can login successfully and ran may tasks.I have CF8 Enterprise version in UnixFrom the network dept, I was told they have the correct JAR file in place but did not tell me what is the correct JAR fileCurrently my web apps are running with datasource created using Oracle Thin Clint but the Oracle encryption needs to be switched back to "Requested" otherwise my users are complaining that they can't login.Where should I go from here???? has anyone ever experienced this situation and found a solution? What is going on with my situatio
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.