The official community for ColdFusion.
Recently active
Has anyone run into problems running CF10 on Mac OS X 10.9, the new Mavericks version just released? Once upgraded to 10.9 on one of my systems, the CF will no longer parse pages, just shows code... could this be an issue with the connector for Apache & if so, how would I reinstall that?Thanks for any pointers or advice!! Stacy
I'm passing a structure to a function for req. fields validation but I first check whether or not my structure is empty.If all element in my structure is empty I don't pass this structure to the validation function.So I use StructIsEmpty to check my structure.The problem is, when my Structure's elements contain only empty string, StructIsEmpty return "NO"How can I have StructIsEmpty to return YES when all of the structure element is an empty string? <cfset st_MyStruct=StructNew()> <cfset st_MyStruct["InstType"]="#Trim(arr[112])#"> <cfset st_MyStruct["InstId"]="#Trim(arr[113])#"> <cfset st_MyStruct["PLN"]="#Trim(arr[115])#"> <cfset st_MyStruct["PFN"]="#Trim(arr[116])#"> <cfset st_MyStruct["Referal"]="#Trim(arr[118])#"> <cfif StructIsEmpty(st_MyStruct) NEQ "NO"> &nb
I have a report which has one sub report and works.I just move this sub report from column footer to rpeort footer and add a new sub report to column report.The main report and first sub report works still the same, but second sub report added does not show on the report.The usb report works fine itself.I just wanted to know are there any particular configure for more than one subreport on the report.Your help and information is great appreciated,Regards,Iccsi,
I have had very little luck trying to find out how to do this. Recently I have been tasked with moving coldfusion sites to a new server and new version of Coldfusion (Coldfusion10). The webservices on on one server an old sun solaris 5.8 server. I need to move them off of it to our new server a Win 2008 R2 how do I go about doing this do the services need to be set up as a part of the default website in IIS or is there a coldfusion set up I need to have configured instead. I am by no means a Coldfusion guy infact I have not used it before unti a month or so ago so you're dealing with a total rookie. Any advice guides or info you guys can get me would be greatly appreciated.Thanks
I have a cfinput date field on the form, I have value from my query like "#myquery.Mydate#", but it gives me {ts .....} format,Are there an yway to set the date format using short date format?Your help and information is great appreciated,Regards,Iccsi,
i hope somebody can help me even though this is the wrong forum. I searched for the correct forum in vain. I have unsuccessfully search and tried the live support chat. I waited in live for a half hour with no response.I wanted to know if stockholder information had been compromised. and i wanted to know how to close my account on this site and delete my informtion. Can somebody please help me?
HiI am trying to install coldfusion 10 using multiple instances and external webserver (IIS), the problem is that when i link to my application inside the seccond instance coldfusion use the same default instance as a cf engine. Instance 1 = Path: C:\coldfusion10\1Instance 2 = Path: C:\coldfusion10\2\test.cfmNaturally it should use the configuration for instance 1 when i open test.cfm, but now it will use the cf engine and configuration for instance 1 when i open test.cfmany idea how i can use different admin configuration for each instances using cf10 without Jrun?
Does CF10 support HTML5 drag and drop? Specifically, I've seen sites where you can drag/drop elements from one listbox to another. Can this be emulated/done in CF10? Thanks!
I'm terible with regex and I can't seem to wrap my head around this simple task.I need to parse out the two dates in a string which always has one of two formats: "Inquiry at your property for December 29, 2013 - January 03, 2014"OR"Inquiry at your property for 29 December , 2013 - 03 January, 2014"the 2 different date formats are throwing me off. Any insights would be appreciated!
The following site says that a trial version of the software can be converted to a free educational version during the registration process. http://www.adobe.com/uk/products/coldfusion-builder/faq.htmlColdFusion Builder 2 is available free to all eligible education customers for learning purposes only and not for production purposes. Students, faculty, and staff can get serial numbers to activate downloadable trial versions by registering on the registration site. During registration, you will be prompted to upload a copy of your student ID, faculty ID, or employee ID, or you can upload a letter on institutional letterhead proving your current affiliation with an educational institution. Once validated, you will be emailed a free educational serial number for ColdFusion Builder 2. It may take up to two weeks after you submit the request to receive your serial number.I have been unable to reach the 'registration' page for CF builder.Is the above information still valid and if so, how do
We are running ColdFusion 10 application server and using Omniture in our application. Since upgrading to CF 10, we have been getting the following error:Oct 19, 2013 3:43:30 PM org.apache.tomcat.util.http.Cookies processCookieHeaderINFO: Cookies: Invalid cookie. Value not a token or quoted valueMaybe there is an easier solution to rid ourselves of this error, but this is what I've found.I have already pinpointed the issue, which is with the format of Omniture's one cookie which contains brackets. We reached out to them about chaning that format, and they replied the couldn't and that no one else is having the issue. I have found that at least other Tomcat users are having the same issue and it had been suggested to edit a setting. So one our options for eliminating this issue is to adjust the setting in Tomcat that is bult-in to CF 10. From what I've gathered I need to add ALLOW_HTTP_SEPARATORS_IN_V0 to my configuration and set it to true. I've found configuration files for Tomcast in
When in the bridge trying to select a star rating i get no responce.
So, I have J2EE memory variables disabled (so, to my knowledge, CF will issue CFID and CFTOKEN)I checked my browser (Chrome 30) and I have not disabled cookies in any shape or manner). I was dumping the SESSION scope to the screen, and taking note of the CFID, and it kept changing each time I reloaded the page, which made me think that for some reason a cookie was not being set on my browser, or my browser was not sending the cookie in the REQUEST subsequently.Are there other things I need to check on to make sure I'm setup properly? My APPLICATION variables for SESSIONS are:THIS.sessionManagement = trueTHIS.sessionTimeout = createTimeSpan( 0,0,30,0 ) In my onRequestStart, I am running a:<cfset onApplicationStart() />Which as I understand it means it will run the code IN the oAS() method, but will not start a new application. None of my code in those BIFs does anything with the SESSION scope.
after downloading a book to my nook it disappears from adobe
Hi All,I have this query in CF9://create an empty query to work withvariables.qryFoo = queryNew("myID","DOUBLE");//add a row and fill it with some dataqueryAddRow(qryFoo);querySetCell(qryFoo,"myID","1");queryAddRow(qryFoo);querySetCell(qryFoo,"myID","2");Here is my update statement:<cfset myIDs = valueList( qryFoo.myID ) /><cfquery datasource="#application.str_dsn#"> update myOtherTable set trueValue = 1 where myID in ( #myIDs# )</cfquery>It works fine until it reaches more than 1000 ids. I am getting this error:ORA-01795: maximum number of expressions in a list is 1000I found this statement: "You cannot have more than 1000 literals in an IN clause. You can, however, have SELECT statements in your IN clause which can return an unlimited number of elements i.e."I try to do an update inside of Q of Q but i cannot do it:There was an error processing the update. <br><b>Query Of Queries syntax er
Hello, I want to ask a question, i want to build a website and includes flash articles and subjects.for example https://www.tonerizmir.com , i maked this site by ready webpage tools, but i want to make flash sites. where can i learn from ? and is there ready program for this and where can i buy ?thank you so much
For those of you who don't know the "pleasure", upon installing .NET on your server (we had to, a 3rd party app we need uses it), Microsoft sees fit to propagate a "aspnet_client" folder into the root of every site on IIS as well as randomly through each site's subdirectories. Truly, if I find the person responsible for this imbecile-ry, the b*tch-slapping will be pride obliterating.But that aside, I have created a scheduled task to find all instances of this folder for a directory and below (the web root) and to remove it. Well, the problem is that doing a <cfdirectory> listing, even when just specifying "dir" for type and "aspnet_client" for the filter, ColdFusion takes over 30 seconds and times out before it can get a complete listing of where these folders exist.Can anyone think of an alternate way to get a listing of these folder locations? Maybe directly through Java for a faster reading? I run this script every hour on the hour, and it's just been t
This ocurred next error in my installation, but I installed all frameworks in Features.Please, can I help me.
I am recreating a web application that serves up search results in a CSV file. I'm able to create the csv fil from a database query, then offer a download link to grab it from.Question 1: In order to make the CSV files unique, I am appending them with the session id. Is this a bad idea? Should I use an encrypted session id instead?Question 2: In order to prevent the server from filling up with csv files, I want to delete the file once it's been downloaded. I'd like to do this on session end, but the session variable I used to name the file will be gone when the session ends, so this might not be the best idea. Any suggestions?Thanks!
Hi,So I have Win 2008 R2 Server running coldfusion10 and when I try to get it to connect to this https webservice I get Error creating web service. Please ensure that you have entered a correct Web Service name or URLI have the SSL cert in the keystore and I can browse to the service from the broweser on the server not really sure what else might be causeing it I though maybe some XML version issues but it it able to connect to other services with this XML version that are not HTTPS.Thanks for all the help ^^
Can i use <Cfquery dbtype =:dynamic Connectstring=""> if so, where can I get examples of the Connectstringif not what other options are available
Where can I download 6.1 Updater and Hot Fix patch 57510?
I've loved setting scopes in the following manner:<cfset structAppend( VARIABLES, { 'variableName' = 'value', 'variableName2' = 'anotherValue', 'variable' = 'yetAnotherValue'}, true ) />It allows me to set variables in 1 command using structure notation, and keeping the command in an easy to digest look. But a problem I've run into is that I cannot do this with the LOCAL scope and also maintain the best practice of using the 'var' keyword to ensure the variables exist only for the duration of the function call. For example, this currently fails:<cfset structAppend( var LOCAL, { 'variable1' = 'value1', 'variable2' = 'v
Hi,It would seem that CF builder2 doesnt have any code assisting for cfscripting.?Surely ive missed something here.If this is the case then im wondering whats going on as DM CC is clearly trying to discourage you from using it for coldfusion (by stripping out previous CF tools).CF builder has no code assist for cfscript..i like to use cfscript in my components as I like the way it resembles other languages im familiar with, eg javascript, c# etc.Im wondering now, why bother, just use the TAGS ank keep life simple?
We have a ColdFusion 10 Standard server out in production on an IIS 7.5 Windows 2008 R2 Datacenter virtualized environment. Randomly throughout the week, requesting our page will result in a blank white page (viewing source shows absolutely nothing). I remoted into our server and noted that coldfusion.exe was taking up 730MB. I don't track these things so I don't know if that's a lot or not. And usually restarting the service takes 15-20 seconds. This time it took 20 seconds to stop the service and about 30 to start it.I am not familiar with which logs to check in order to provide some useful information, but if anyone has an idea of where to send me looking, it would be greatly appreciated.
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.