The official community for ColdFusion.
Recently active
HiApache/ColdFusion error JRun server(s) probably downVersions: Apache 2.2/CF 9,0,1,274733 on Solaris 5.10 We are getting a high number of transaction failures on Credit Card payment logging. These seem to be associated with an apache/CF instance connection problem - "JRun server probably down" - when in fact it seems to be up and running. This type of error is something we see quite a lot of across the board but have not linked it to a specific transaction/session failures until now.This is the Apache error log [Tue Nov 05 17:57:56 2013] [notice] jrApache[11037: 6765] could not initializeproxy for 127.0.0.1:51004[Tue Nov 05 17:57:56 2013] [notice] jrApache[11037: 6765] Couldn't initialize from remote server, JRun server(s) probably down.[Tue Nov 05 17:57:56 2013] [notice] jrApache[11037: 6765] JRun will not acceptrequest. Check JRun web server configuration and JRun mappings on JRun server.This is the Apache access log- 192.168.39.1 - - [05/Nov/2013:17:5
Hi All,I need to consume a .NET WCF web services using CF 10. I have looked anywhere in Google and I did not find the correct explanation and CF code. The developer documentation “Consuming web services that ColdFusion does not generate” has nothing to look at it (http://help.adobe.com/en_US/ColdFusion/10.0/Developing/WSc3ff6d0ea77859461172e0811cbec22c24-78b4.html). Is there any good link, help, blogs or anything about it? We may need to write a good paper-tutorial about this topic. Even if you try to consume a Java EE web services. Any info about it? Thank you
Hi,is <b> tag work win subject?<cfset variables.subject = "Access for <b>#form.name#</b> has been removed. " /> <cfmail from="#variables.mailFrom#" to="#variables.mailto#" subject="#variables.subject#" type="html"> ....... </cfmail> Email sent with subject:Access for <b>#John Smith#</b> has been removed. How can bold the name John Smith?Thanks
I have multiple courses in a column and another column for the company putting on the courses. I would like to be able to count all the courses registered per company and group the results by companies with the number of courses displayed.Grouping in output is easy to do. However using count() sum() or recordcount will not give me a breakdown of how many classes have been registered for each company.Ie:Company nameClass 1…Registered(1)Class2 …Registered(4)Company NameClass3…Registered (0)Class4…Registered (1)Any help would be appreciated.
Hi,I'm looking at publishing a webservice and was wondering if CF10 supports WS-Security (via Axis 2) out of the box?Cheers,Simon
I want to configure hot keys. I don't see that as an option anywhere.Is it still possible?Thanks,
Whenever I start to install the ColdFusion 10 installer platform for Windows 8, Malwarebytes quarantines a file it labels as having the Trojan.pophot virus. The suspect file is NTAdminRights..., where "..." is a random number ending with .exe.Does anyone know if this is a false positive detection?Thanks
I need help.Please let me understand how to pass from a 30 day trial to buying the product. I only found a request to adhere to an Adobe "Creative Cloud" program and do not understand if that will give me the right to doenload the program/s or if it is just a first step to deposit files.. How much does Premiere cost? can I buy it directly from my Apple iMac applications?roberto selem.pino.co@gmail.com
Hi thereI have a simple CF page set to do a dump of the server only at this stage.<cfdump var="#server#">It works fine when I'm on the server itself and run from 127.0.0.1/mydomain/index.cfmWhen I try to run from www.mydomain.com - I get a 404 file or directory not foundIs this a CF error or is this an error being thrown up from IISHow do I get around this error ?Thanks in advance.Kind regards
We have a website created in CF4.5 and is hosted on our own server, call it www.oldsite.com A vendor created a new website which is hosted at another location and it uses the same name and the DNS info was updated so this new site has the same name and now runs when our oldsite name is used.The vendor created a new name - "legacy.oldsite.com" and pointed to our old IP address at our office and serverfor the origonal site. We have lots of customer support info on the old site and wanted customers to be able to find these docnuments. When we type "legacy.oldsite.com" we land on an index.cfm page one folder above the orogional index.cfm rathee rthan the old index.cfm page. I have added a tag to this page to go to the correct index.cfm page. But the problem now is that all the images on the site and the documents are missing or will not download. When I look at the path of these images and documents, some images start with Http://www.oldsite.com/etc"&nbs
how do I cancel
I just want to cancel
I am anticipating being asked to createa single login system for my coldfusion site and other sites(not coldfusion) on different domains. The other sites will not be tasked with this, but hopefully there will be some cooperation with the other vendors(there has to be). How would I even begin to research this? I was thinking about somehow passing the login info from the coldfusion site to the new site and logging in in the background.
I would like to have a control to have hyper link based on data source.I would like to know does Report Builder have any controls that I can set hyper link based on data.Your help and information is great appreciated,Regards,Iccsi,
I would like to have some error message show at client side from stored procedures.I use MS SQL Server and use RAISEERROR, but ColdFusion does not bring the error message just ignore the error continue to run the other part of code.I just want to know are there any way to bring stroed procedure error message to client, or I have to trap the error at Web Server or JavaScript level.Your help and information is great appreciated,Regards,Iccsi,
We have existing CF applications that use the ".html" file extension. We can't seem to figure out how to get CF Builder 2 to recognize that extension as a CF page. Is this possible, or do we have to go through the trouble of renaming all of our files to use CF Builder 2?
How do I get the Quick Select Tool to be more accurate?
Regards, I need to know if ColdFusion have support ? or until what year it have support ?Thanks a lot ¡¡¡
HI, can i ask some help,...i have some sql statement that will delete records to the database.but i am confuse on this,what if the third sql statement failed to process and then the first and second delete statement are successfully deleted the records?.how can i return the data that was deleted...I am using cf version 9<cftry> <cfquery> // delete statement here </cfquery> <cfquery> // delete statement here </cfquery> <cfquery> // delete statement here </cfquery> <cfcatch type='Any'> <cfset log_error='#CFCATCH.Detail# #CFCATCH.Message#'> <cfquery name="automatedtask" datasource="#mysource#"> // INSERT statemnent here
Hello I am new to cold fusion.I am wondering if there is a way to query a csv file using a read from cffile? Currently I have it setup as a cffile read and then I try to query the file using cffquery. Obviously this doesn't work because I have to set a datasource. Is there anyway to do this or any way to set a csv file as a data source? Any help or direction would be greatly appreciated.Thanks.
Hi,I have a requirement where I need to export query results to Excel. I have a generic code where i can export details to excel which requires query resultset. Is there any way to get the queryresultset from another page?To explain in detail, I have queried DB and I have resultset in First Coldfusion CFM page. I need to use that result set in another coldfusion page. Please help.Thanks,Ravi
Using cfmap in version 9.02 to work with Google maps v3.Location is displayed correctly. Address is obtained from a query Cannot obtain a marker on the map using below code. <cfmap centeraddress="#google_address#" name="locationmap" height="350" type="map" zoomlevel="15" scrollwheelzoom="true" doubleclickzoom="true" continuouszoom="true"
Our Coldfusion 10 Standard server ( win2008 IIS7 ) has been handling flash remoting requests from our flex app and AIR IOS, AIR Android APP sweetly for over a year until a few days ago.We're now getting frequent errors of the type: REMOTEOBJECT ERROR Client.Packet.Encoding Error deserializing client message. null- when sending a VO to a coldfusion CFC as follows:mainApp.routeRemoteCall('lessonService','recordLesson',{aLessonVO:myLesson,runIte:runIte},this) <cffunction name="recordLesson" access="remote" returntype="String"><cfargument name="aLessonVO" type="appcfc.cfcs.LessonVO"> <cfargument name="runITE" type="boolean" >etc etcWe've made no code changes on server or apps to trigger this. We've restarted server.The errors are intermittent and distributed across users. Typically you get an error when you start a session of use then it resolves. Errors are more common when more users are connected - as you always expect - howeve
Hi,I have set up a chart in coldfusion 9 which contains 2 line graphs and 2 bar graphs, and also added xml so the chart has 2 y-axis.I have noticed that one of the chartseries is assigned to one of the axis and the other three are assigned to the other. Is it possible to amend so that each y-axis has two graphs assigned to them.Hope this makes sense?Thanks in advance
I recently created a web page for my FlyBoard company in Colombia called Cartagena FlyBoard and thanks to Adobe Flash Player, it came out really cool. Check out the FlyBoard on my website www.cartagenaflyboard.com. Thank you Adobe!
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.