The official community for ColdFusion.
Récent
Hello,Where could I found the Enterprise version of Coldfusion 10 for RedHat ?ThanksOth
Hi all,I currently have a win 2003 server running CF9 and CFBuilder. I have decided up upgrade to CF11 and CFBuilder 3 on a win 2008 server.CFBuilder developed codeI installed CF11 without much issue in Production mode, moved some of my CF9 code and over it worked ok, a few coding issues but nothing major. I then attempted to install CFBuilder 3 I chose not to install the local admin server as I had installed CF11. I attempted to set up a server in CFBuilder using 'other' and pointing it to my cf root but the server just showed as stopped.I then noticed my CF11 was broke. The admin page would not display, the code I copied over would not display. I looked at the main CF11 service and it was running, I tried to restart it but it crashed. I then attempted to uninstall CF11 and CFBuilder but they would not uninstall properly.I have rebuilt my 2008 VM, so now have a clean server to start again.So - any advice on where I went wrong, or pointers on what I should do ?This set up is used to ho
II'm trying to have my images do the following after upload:If greater then 2000px wide then resize down to 2000px (I got that functioning ok as of now)crop off the top and bottom 25% of the image to make it rectangular. MY my problem lies in trying to figure out how to crop that 25% off the top and bottom equally no matter what the height is.. I can't control all the possible different sizes a user might upload (height and width) I just know I need it about 2000px wide and the height be around 650px (roughly) and cropped at the top and bottom. Could anyone help help me with writing something like that up? Thanks allot
I purchased CF Builder 2 during a promotion a few years ago, and CF Builder 3 does not recognize that license number when trying to upgrade. any ideas?
We are looking to upgrade our existing CF server from CF5 to the latest version. I found some system requirements on the website, but I’m not sure of the version required and a few other things.Our current set up is as follows:•OS: Windows Server 2000 SP4•Processor: 2.4 Ghz Intel Xeon•RAM: 3.14 GB•C Drive: 10 GB•D Drive: 30 GB•CF Version: CF5The questions I have are:1.What version of CF would we need to run our application? We have CF installed on a DEV server and a PROD server (both with the same specs as mentioned above).2.What is the price of the suggested version?3.Are there version steps that we much take to upgrade to the latest version or should we just start with a fresh install of the newest version?4.Can support be provided to configure the new version on our new server once we get it installed? Is there a price or is it rolled into the version’s cost?Any help or information would be greatly appreciated.Thanks
Hello, everyone,I've been pulling my hair out for a few days, over this. Cannot understand what is going on.With the help of our SA, I copied/pasted a working Apache Server onto my DEV harddrive, updated my system to JDK 7.55, and followed instructions on turning off the Tomcat server that comes with CF10.The Apache server is working, serving up CFM pages as it should; CFAdmin is accessing ALMOST everything, as it should.When I click on "ColdFusion Collections", instead of seeing my Solr collections, I get an error message:Security: The requested template has been denied access to localhost:0The following is the internal exception message: access denied("java.net.SocketPermission" "localhost:0" "listen,resolve")Our SA doesn't know what's happening, either, and I think I've wasted enough of his time. Everything else works great! Pages load SO much faster, under Apache. But this issue with collections is going to be a problem.Anyone have any ideas?V/r,^_^
When trying to consume a webservice (temporarily located on a server within my intranet) I get this Cold Fusion Error: Web service operation "getIndustries" with parameters {CareerStart} could not be found. This is what is in the wdsl file for the function I am trying to access: - <s:element name="getIndustries"> - <s:complexType> - <s:sequence> <s:element minOccurs="1" maxOccurs="1" name="getIndustriesRequest" type="tns:CareerTrack" /> </s:sequence> </s:complexType> </s:element> - <s:simpleType name="CareerTrack"> - <s:restriction base="s:string"> <s:enumeration value="CareerStart" /> <s:enumeration value="ContinuingEd" /> </s:restriction> </s:simpleType> - <s:element name="getIndustriesResponse"> - <s:complexType> - <s:sequence> <s:element minOccurs="0" maxOccurs="1" name="getIndustriesResult" type="tns:ArrayOfKeyValuePair" /> </s:sequence> </s:complexType&
Hi all,Im trying to call a webservice with a complex-within-complex structure. Here an extract form the wsdl:<simpleType name="ProductType"> <restriction base="xsd:string"> <enumeration value="Car"/> <enumeration value="Truck"/> </restriction> </simpleType><complexType name="Product"> <sequence> <element name="id" type="xsd:string"/> <element name="type" type="impl:ProductType"/> </sequence></complexType>If i call the webservice with a structure as Parameter<cfset local.ws.addProduct( { id: 'p01234', type: 'Truck'} )>I get an Error. Cannot perform web service invocation addProduct.The fault returned when invoking the web service operation is:org.apache.axis2.AxisFault: product cannot be nul
Hi,i use CF to parse an XML FILE, i'm stucking now with this part:<HR.PUB.CONTENT><FT TYPE="F">Example GmbH</FT>, now in Zurich,<FT TYPE="A">CHE-100.000.000</FT>, City new:<FT TYPE="S">Erlenbach ZH</FT>. Address new: Haldenstrasse, 8700 Erlenbach ZH.</HR.PUB.CONTENT>I just want one string like that: Example GmbH, now in Zurich, CHE-100.000.000, city news: Erlenbach ZH. Address new: Haldenstrasse, 8700 Erlenbach ZH.i tried this one, but it wasn't useful:Text= xmlsearch(MyData, "//HR01/HR01.SPEC/HR.PUB.CONTENT")[idxAttr1].XmlTextCan anyone help me? I use <cfscript>
I have a database table of options for additions to homes. I have another table for categories for these options. Right now I'm making a lot of queries to get each individual category of options. It looks something like this:</cfquery><cfquery datasource="applewood" username="username" password="password" name="getCategory2" > SELECT * FROM op_categories WHERE idOpCategories = 3</cfquery><cfquery datasource="applewood" username="username" password="password" name="getCategory3" > SELECT * FROM op_categories WHERE idOpCategories = 4</cfquery>...and so on. Is there a way to make 1 query that will find each WHERE clause? I want it to look like this on one page:Category 1 Category 2 Category 3--------------- ----
I'm interested in finding out about any issues before I jump in. It will probably be some months before I setup a test DB with Oracle 12c. If anyone has tried this and has any lessons learned to share I am will to listen.
Is ColdFusion 9 certified/compatible with Oracle 11g R2? I cannot find the compatibiliy Matrix for CF9 anywhere on Adobe's site. In addition, does anyone know when/if will Oracle 12 be certified for ColdFusion 9 and/or 10?
Hello I'm trying to use a C# DLL using "cfscript" , if I use local methods it works fine, but if I use methods the required a deferent endpointcoldfusion is not reading my configuration file.is there a specific directory I need to place, what do I have to do so coldfusion can read my configuration file?<configuration> <system.web> <compilation debug="true" targetFramework="3.5" /> <httpRuntime targetFramework="3.5" /> </system.web> <system.serviceModel> <bindings> <basicHttpBinding> <binding name="BasicHttpBinding_OTA2010A.LocationService" maxBufferSize="99999999" maxReceivedMessageSize="99999999" /> </basicHttpBinding> </bindings> <client> <endpoint a
I have been finding the editor flags some valid syntax as compile errors. This is working code, so I'm not sure why this editor is flagging them as errors. Our team was hoping to add Cold Fusion Builder 3 for our Devs, but it is proving troublesome so far.The line below shows up as an "Invalid Token" compile error:param name="url" default={};The line below says "Invalid Token Component"public component function preinit() {Also, it would be great if there was documentation on getting RDS working and also remote debugging on Apache or IIS. The very limited documentation uses the easier localhost examples and most are from 2009.
I am trying to test out the new cfexchange tags in Colldfusion 8 so that I can integrate in with our intranet at some point but am having some difficulty. I am just testing by using the tag: <cfexchangeconnection action="open" connection="myConn" server="192.168.0.20" username="myUsername" password="myPassword" formbasedauthentication="true"> I keep getting the error, Unable to connect to the Exchange server using HTTP/HTTPS protocol. HTTP response code : 302 Here is what I have currently checked. 1) I can ping the exchange server from the server that is running Colfusion 8 2) The Exchange server has "allow" for MS Exchange Server in the "Web service Extension" of IIS 3) Outlook Web Access is working and is enabled for my user account 4) Rechecked the ip address of the Exchange Server 5) tried username/passsword combo that I use for Exchange and OWA and even tried appending username@domainname.local Anyone have any ideas to test further Thanks, Brian
Hi, I have problem with fckeditor file browser. When I'm opening file browser I get error message from connector. Error message: XML request error: Access is denied (403)I have set permissions in connectors/cfm/ -folder as "full control" for group "Everyone". This shoud be enough.Same error message comes when i use Fckeditor supplied with Coldfusion 9 and Fckeditor installed separately. Server information:Win Server 2008 R2IIS 7.5 (with IIS 6 Metabase compatibility)Coldfusion 9.0.1 developer editionFckeditor 2.6.4.1 (supplied with CF9)Fckeditor 2.6.6Best regardsPasi Rouhiainen
0 down vote favorite I have some applications developed on older CF versions (9&10) and in anticipation of a hosting system migrating to CF11 and started doing sometesting with a CF development platform on Windows 8 with Apache 2.4. I have found that in CF11 pages using cflayout and cflayoutarea does not workcorrectly when collapsed with javascript:ColdFusion.Layout.collapseArea. Firebug does flag an error in the CF javascript. Wondering if anyone elsehas seen a problem like this and if there is a circumvention I could use to get this working. A very simple example (complements of the Chapter 2 cflayout example demonstrated in Dan Short's video on Ajax & Coldfusion) fails as well onCF11 but works in CF9 & CF10. main.cfm<!doctype html> <html> <head> <meta charset="utf-8"> </head> <body> <cflayout name="borderLayout" type="border" fittowindow="true"> <cflayoutarea name="header" position="top" size="75
Hello,I am getting ready to upgrade a server to RH6/CF10. I have been unsuccessful getting ODBC connections to work with ColdFusion on Linux. Does anyone know if the upgraded versions have solved this issue, or will we still have to use JDBC instead of ODBC?Thanks!Dejah
We are using coldfusion10 enterprise edition. Now we have issue on ColdfusionAdmin schedule tasks page. It shows null pointer error and we couldn't open or edit schedules task page from coldfusionadmin. Can you help us?here is an error belowThe system has attempted to use an undefined value, which usually indicates a programming error, either in your code or some system code. Null Pointers are another name for undefined values. Resources: Enable Robust Exception Information to provide greater detail about the source of errors. In the Administrator, click Debugging & Logging > Debug Output Settings, and select the Robust Exception Information option. Check the ColdFusion documentation to verify that you are using the correct syntax. Search the Knowledge Base to find a solution to your problem. Browser Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0) Remote Address 127.0.0.1
I'm having a problem with my cfspreadsheet. I try to create an excel file which will trigger the browser to download and open the file created. Its work fine in other browser But I'm having a problem to save and open the file with IE 8. The file successfully create in the directory but fail to call the file create to download. It only can be done if I put a direct link to open the excel file. This is the code that I use to trigger the file to save and open. Does anyone knows the other way?<cfheader name="Content-Disposition" value="inline; filename=file.xls"> <cfcontent type="application/vnd.ms-excel" file="template\excel\file.xls">
I was using CF10 and my site response time was quick, especially on my local development machine. I upgraded my development and live servers to CF11 and both seem to have a delay in first access. It seems to be client and possibly browser specific. If I just walk away for about 10 minutes and come back, then when I try to load my site (on my local machine) it takes about 10 seconds to load. As long as I keep using it it is fast and responsive, but if I walk away for 10 minutes again and come back, it seems to have to wake up.Is there a setting that I can tune? Is anyone else seeing this?I will also make note that even if one website I am developing on is quick and responsive, as soon as I try to access another website using the same IIS and CF11 then it has a wait time. It is like it is figuring something out with the browser before it is willing to load.
This week I've been working on getting clustering setup for a client. Initially we were using CF10 with the latest patches. Ideally we wanted non-sticky load balancing with session replication. We want really high availability with the option to reboot a server at any time and not have to wait for session draining or lose customers if a node goes down. Adam Cameron points out that there is an issue with CF10 and not having an option to turn on session replication Adam Cameron's CFML Blog: Problem with session replication with CF10 clustering. Trying various fixes I could not get the session to replicate we moved to CF11 which restores that issue. There is a bug open for CF10 with some weird responses but I never saw any sort of fix for this.CF11 as noted solves this odd issue, so I thought we were in the clear. Following the limited cluster setup guides found online there is some manual configuration to do on the remote instance. First, I am not sure if the default cfusion instance jus
Hi all,I am working on a calendar scheduling function for a school that I'm having a hard time wrapping my brain around. My DB table has 3 columns - ApptDate, ApptTime, ApptSlots. Most ApptDates are listed more than once because there is more than one time available for a date. See below for example: ApptDateApptTimeApptSlots9/9/20143:00 PM29/9/20143:30 PM29/9/20144:00 PM2The page queries this table for all data. Then, there is a query of that query that selects distinct dates and outputs them in a drop down--the first step in a user choosing their appointment. The next form field I'll have is a drop down for times. What I'd like to happen is based on the user's date selection, the corresponding times will appear in the time drop down, as long as ApptSlots gt 0. Before the user selects a date, I'd like the time drop down to be hidden or disabled.Is this a possibility or am I dreaming?Thanks for the help!
I finally got my Mac 10.7 setup with CF 10 and Apache using multiple virtual hosts. I'm now trying to get my first REST service up and running but not having much luck. I solved my 500 server errors and the 404 issues. Now I have a service registered. Problem is when I call the service it writes this to the application log."Component crude could not be found.Check if the path is correct or the application has been registered succesfully. The specific sequence of files included or processed is: '''' "When I access it using cfhttp it returns a status code 200 but the filecontent is empty. When I access the service using my browser I get a status code of 200 but nothing returned.Any suggestions on what could be going on? Rest service mapping in CF AdminRoot path: /Users/myaccount/Documents/AdobeColdFusionBuilderworkspace/00localDevService mapping: restappApplication.cfc app name is restapp<cfset This.name = 'restapp'>My file calling the rest service.<cfhttp url="http://testapp:85
CF9.01: I see undesired entries in http.log. The appear to be generated by some hostile code on the server. But the log does not show which file generated the log entry. Is there a way to determine this? I have text-searched for hard coded links as shown in the examples below but found none. I am using IIS6. Examples of the unwanted"Information","jrpp-34","08/20/14","21:43:52",,"Starting HTTP request {URL='http://www.stopforumspam.com:80/api?ip=74.86.158.106', method='GET'}"The referenced IP is not on our system.Another: "Information","jrpp-41","08/20/14","23:23:57",,"Starting HTTP request {URL='http://3264335898:80/n/a.txt', method='get'}"
Remix with Firefly Community Gallery
Thousands of free creations to fall in love with and remix in Firefly.
Vous avez déjà un compte d'utilisateur ? Connexion
Pas encore de compte ? Créer un compte
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.