The official community for ColdFusion.
Nyligen aktiv
We are running a post to a web service using cfhttp.When the post runs over https, the return is limited to 8K.Has anyone seen a similar issue?
I have 4 sites running under 1 instance of CF 10 STD. every now and then no regular pattern 2 of the smaller sites stop responding to http requests. Has anyone seen the issue before? When this issue first occured I seen it happeneing durning the client variable purge I have since disabled the registry purge and placed the client variables in an SQL DB. The issue stoped for about a week but now it has come back and not on any type of regular interval or pattern. Log files are no help at all.OS: Windows 2008 R2CPU: 1 vCPU RAM: 4GBIIS 7.5Server Product ColdFusion Version 10,0,10,284825 Tomcat Version 7.0.23.0 Edition Standard Serial Number 118750067037389643140965 Operating System Windows Server 2008 R2 OS Version 6.1 Update Level /E:/ColdFusion10/cfusion/lib/updates/chf10000010.jar Adobe Driver Version 4.1 (Build 0001)
CF10 & Windows Server 2008 R2 cgi.auth_user Windows-Authentifizierung arbeitet nicht Hat jemand einen TIP ? ,... komme absolut nicht weiter ?Benötige dringend Client-User-ID als Authentifizierung dETsmi
I have a project where I am dealing with around 200 data entry variables. I put notices everywhere not to use punctation but folks do love to input $ and commas which of course throws the error "Error converting data type varchar to numeric." I have tried every trick I can find but it does not catch the $ and comma entery. This is my latest effort. The SQL type is numeric(10,0). What have I missed? What am I doing wrong? Very frustrated with this! <cfinput type="text" name="GFA" value="#NumberFormat(GFA)#" size="9" Message="Round to whole dollars no punctuation" ValidateAt="onsubmit" Validate="integer">Thanks for your time.
I recently installed ColdFusion Enterprise 10 and set up 3 instances on the same server and then set up multi server monitoring for my three instances. The problem is logging into one CF admin on one port logs you out of the other. This appears to be affecting the multiserver monitor as well making it utterly useless. From the overview dashboard you can see the servers logging in and out repeatedly. Is this is a bug or is there something obvious here I'm missing?
Can´t believe it!!!I have two laps one Mac runnig CF10 dvlp ed. the other one its the same in Win7.So, I started a prj in Mac and run it, so far so good (css loaded, png loaded, jQuery start dvlp)even FireB data loaded. Then copy import the prj in Win 7 to work in home and...Surprise Apache Tomcat resources not found... How is this POSSIBLE!!!I start with CF 9 in ISS (make to do the right things run its a nail in the mouth but it worth it)then CF10 appears and I said"This is really a love at first sight"But NOW! its really dissapointing. How fix this? I have readed all I find about it butfinally I cant believe it...Its not hardware issue, both CF10 are up to date (17/07/2013) so I´m little tiredof the struggle with CF and Windows...I just want to know how is this possible...
We are running ColdFusion 10,282462 on a Windows Server 2008 R2 (64-bit) server. There are several updates waiting to be downloaded and installed. Before I can install these updates I need to download and install a manditory update. I have downloaded the manditory update, but I am not sure where on our server that I need to copy the files included in the cf10_mdt_updt folder which I downloaded from your website. Where do I copy the downloaded files to on our server?
Hi,my page can't find the css for fc if i included them within the header, but it found and wokred fine if i have them within cfinlude tag?<head> <title>Document</title> <!--- <script type="text/javascript" src="js/showHide.js"></script> <link rel="stylesheet" type="text/css" href="css/style.css"/>---></head><cfinclude template="js/showHide.js" ><cfinclude template="css/style.css" >thanks
I had a battle with this, I've googled and seen more than 100 results and have not found the solution.I installed many times "Coldfusion", in different ways, in different distributions of linux and can not find the solution to the much hated "flex2gateway", tryig so many fixes but none worked for me, I keep getting the 404.System details: Debian Wheezy (7.0), Coldfusion 10, Apache 2.2.22I hope someone can help me.
Coldfusion 8I inherited an application and am trying to maintain and improve it... hit a snag today.I have a multi-select box that is not displaying what I expect. The values come from a ColdFusion grid which is based off a database query.Here is the code for the select - does not work - nothing is selected:<cfselect name="USER_IDS" multiple="true" queryposition="below" selected="USER_IDS" query="ActiveUsersPlus" disabled="#disabled#" value="G_USER_WORK_UNIT_SK" display="G_USER_ID" ></cfselect>Now if I change the multiselect to a single select like below - it takes the first item in the field list (from the grid) and selects it in the drop down.<cfselect name="USER_IDS" multiple="false" queryposition="below" selected="USER_IDS" query="ActiveUsersPlus" disabled="#disabled#" value="G_USER_WORK_UNIT_SK" display="G_USER_ID" ></cfselect>Or if I assign a variable like this and use the multi-select code it seems to work as well. testlist = "22,26"; ...<c
I am using coldfusion 10. cfmenu not working. Error is 'this.body.firstChild' is null or not an object in menu-min.js file.Error in line oNode=this.body.firstChild.Any body faced same issue? What is the fix of this error.
Why does this not work for the User Agent empty string?<cfif REFindNoCase("^$", CGI.HTTP_USER_AGENT)> <cfoutput> "#CGI.HTTP_USER_AGENT#" </cfoutput></cfif>For obvious reasons this works as an alternative.<cfif ! len(CGI.HTTP_USER_AGENT)> <cfoutput> "#CGI.HTTP_USER_AGENT#" </cfoutput></cfif>However, I'm not really interested in a workaround but the reason why the firt RegEx approach fails.Testing conducted with FF Add-On "User Agent Switcher" I'm able to impersonate a browser that is void of a UA.Other info:Adobe ColdFusion 9.0.1Server 2008 R2 64 bitTesting code from within application.cfm
I am trying to get some output from the Solr searchIf I search for "Fund Administrator", which should only return 2 records, I get 5 records because 3 of the search results are fund administrationHow do i prevent fuzzy returns on quoted values?qSearch equlas "Fund Administrator" including quotes <cfsearch collection = "#sCollection#" name = "search" contextHighlightBegin = '<span class="search-format">' contextHighlightEnd = "</span>" contextPassages = "3" cri
Does anyone else use Team Foundation Server with CFEclipse? Trying to figure out how to check OUT a ColdFusion file with this system.Thanks!RLS
<cfqueryparam cfsqltype="cf_sql_datetime" value= #NOW()#>Yields the error:[Macromedia][SequeLink JDBC Driver][ODBC Socket][Microsoft][ODBC SQL Server Driver][SQL Server]Conversion failed when converting datetime from character string.I have also tried:<cfqueryparam cfsqltype="cf_sql_datetime" value= #createODBCdatetime(NOW())#>and numerous other variations to no avail.BUTInserting:#NOW()#
I recently moved a Cold Fusion site from an older 2003 box to a new 2008 64 bit box. I used Web Deploy to move the site after installing Cold Fusion. The same version that was on the 03 box. Cold Fusion 8. So far all aspects of the site have worked fine except for today when users tried to do a upload. They get this error. Attribute validation error for CFFILEThe value of the attribute destination which is currently " pointing to a folder on a server" is invalidI compared the file it specifies between the 2 servers and it's the same. Is this because of the 2003 to 2008 change? I compared CF setting on both servers and they match up. Where do I beging to troubleshoot this? I had to hook up the old server to get the site working properly for the users. I know nothing of CF. This site was developed by a Consultant that is no longer available to us.Thanks for any help
Hi, I am getting the error message "Element cause is undefined in a Java object of type class coldfusion.xml.rpc.ServiceProxy$ServiceInvocationException" while calling the LoadReport() to load the report rdl file in coldfusion 10 through web service.It is working fine when i am using the sql 2008 report server but it is giving the above error in 2005 sql server in client's staging server.Below is the piece of code where exactly i am facing the issue:var execInfo = webServiceObj.loadReport(javacast('string','ReportName'),javacast("null",""),trustedUserHeader);Thanks in advance.
We have a new Coldfusion 10 server that becomes unresponsive .
As funding is an issue, my hosting space is currently CF 6, and am stuck with this version for about another year, so I must make the best of it. I have a big challenge with CFLOGIN. My goal is to have family members sign into the family site, and have their navigation to go from page to page. I am baffled as to how to implement cookies, with a backup database to hold their login data, in case their machine is set to not allow cookies. I've got a lot of people waiting for me to accomplish this! The code here, is not CFLOGIN, but the book says it will!Right now, the table in the database is named permissions, and the two fields are un and pw.I am typing from the Inside Coldfusion MX book, by John Cummings. I looked at another book, by Ben Nadel, and typed his code verbatum also. I triple-checked every character, and things are not working with either code sets. The site is a family site, and security is not a big issue, but I wish to imple
CFINPUT TYPE="Submit" is not working. The error message reads:Attribute validation error for tag CFINPUT.The value of the attribute TYPE, which is currently "submit", must be one of the values: RADIO,CHECKBOX,PASSWORD,TEXT.I'm using MX. Does this attribute not exist?
HI FOLKS: I get the error message: /opt/local/coldfusion10/jre/bin/sparcv9/java: No match. when trying to start Coldfusion 10 after a successful installation. What does it mean and how do I fix it? Thanks for any help that can be given on this issue.
I have an optional parameter in my stored procedure.I call the procedure from my function in cfc file.The code is following.Since the Myparam3 is not required in myfunction, neither in stored procedure.It does not return data if I do not provide 3 parameter from my html link.It does return the data I need if I provide MyParam3 to MyFunction,Do I need provide the not requuired optional parameter to my cfc function call for the stored procedure?Your help and information is great appreciated,Regards,Iccsi,<cffunction name="MyFunction" access="remote" returnformat="json"> <cfargument name ="MyParam1" required="yes"> <cfargument name ="MaParam2" required="yes"> <cfargument name ="MyParam3" required="no"> <cfstoredproc procedure="mySP"> <cfprocparam value = "#MyParam1#" CFSQLTYPE = "cf_sql_date"> <cfprocp
I am trying to determine if Cold Fusion is installed on 2500 computers. I don't know anything about the product, and noticed that it can be installed as a Java application. Does the Cold Fusion service get installed for this option as well? My plan is to check services with a script and if the Cold Fusion service exists, flag the server as having it installed. I just don't want to miss any using this method.
I have a .net DLL, when using cfobject it only pulls through two of four methods. I can see the two that fail use ByRef, is that supported.---- These are OKCompleteOrder(ByVal strDBKey As String, ByVal OrderId As Double) As pdaResultCreateOrderLine(ByVal strDBKey As String, ByVal OrderId As Double, ByVal Item As String, ByVal PackSize As Integer, ByVal Qty As Integer, ByVal Value As Double, ByVal CostCentre As String) As pdaResult-- These failGetPrice(ByVal strDBKey As String, ByVal EMail As String, ByVal Item As String, ByRef ItemPrice As Double, ByRef ItemStatus As String, Optional ByVal PackSize As Integer = 0, Optional ByVal Qty As Integer = 1) As pdaResultCreateOrder(ByVal strDBKey As String, ByVal EMail As String, ByVal Address As String, ByVal PostCode As String, ByVal Reference As String, ByVal Notes As String, ByVal CostCentre As String, ByVal Delivery As Double, ByRef OrderId As Double, Optional ByVal PaymentRef As String = "") As pdaResult
Anyone using sql server 2088 web edition with coldfusion 9? I just signed up for hosting with the web edition and wanted to get any input as far as difference between it and standard edition.Thanks all,Ken
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.