The official community for ColdFusion.
Nyligen aktiv
according to ben forta who i met many years ago, cf loads the complete page and then does functions in a particular order. i.e. includes, queries, etc.my problem is that i am sending over a unique identifer in the formset that is needed in an include on each page of my cart (i don't use cookies or sessions and don't want to get into that).what i want to know is if there is a way to force cf 10 to look at form. items first. the page needs that number or the include (header.cfm) crashes. i also have that issue with cfabort where cf does a lot of functions before it recognizes that tag which can really foul up things if a variable isn't there.site needs to be pci complianttnx in advance,
I use following jQuery code to pass json data from ColdFusion using jQuery.get() to datepicker.I tested the server side and it returns data without error.I got 'I am here' and 'Data Loaded:" message from alert.The click evnet is triggered, but it does not go in to success callback function.Any information and help is great appreciated,Regards,Iccsi,Her is client side coe:jQuery("#btnTest").click( function() { alert(' I am here'); jQuery.get({ url: 'MyServer.cfc?method=MyMethod&vMyNumber=5', datatype: 'json', success: function(data) { alert(" i am inside"); jQuery("#MyDate").datepicker('setDate', data.MyDate); console.log( data ); &nb
When using PDF output in CFDOCUMENT, for correct, proper display of PDF files, does it require the full version of Adobe Acrobat to be installed on the ColdFusion production server?We are using ColdFusion 9 on development/staging/production servers. I have one report that uses CFDOCUMENT with PDF as the output format. When I run the report on my local development/staging server (which uses CF9 Developer Edition), the output looks great. Background colors are displayed correctly (using CSS styles), page breaks work perfectly, etc.However, when I copy and run the report from our CF9 production server, the PDF output has no background colors. Everything is in "black and white." The only difference is that my local/staging server has the full ($199) version of Adobe Acrobat installed on it. But our CF9 production servers do not have Acrobat installed (just the free Acrobat reader).I was going to try installing the free Acrobat 30-day trial version on the
Hi Everyone,I have ColdFusion Mx 6.1 server installed. I want to migrate the server to ColdFusion 10. Is it possible to migrate/upgrade from 6.1MX to 10?If possible, please suggest with the steps required to migrate from ColdFusion MX 6.1 to ColdFusion 10.Thanks,Bhagath S
CF10 update 11 Win7 x64I'm running into a problem that I just noticed with serializeJSON()... ints are being converted to floats. Here's the code:<cfset r = { "x": 0, "y": 1}><cfoutput><pre>#serializeJSON(r)#</pre></cfoutput><cfset r.x = int(Val("1"))><cfset r.y = ceiling(100/10)><cfoutput><pre>#serializeJSON(r)#</pre></cfoutput>Here's the output:{"y":1,"x":0}{"y":10.0,"x":1.0}Is this messed up or what?
How do we get support?
I need pass server side data from ColdFusion to jQuery DatePicker for a date time value from my backend database like following code.<cffunction name="myFunction" access="remote" returnformat="json">Since jQuery needs xml or JSON data type, I only need pass a piece of data, do I still need pass JSON data type including ROWS, TOTAL and all the information as well? Regards,Your help and information is great appreciated,Iccsi,
I have a virtual web server at work. I have several different sites on it, lets call them:SiteA.MyWork.orgSiteB.MyWork.org <-- this is a ColdFusion siteSiteC.MyWork.orgThe sites are all installed in the H drive as is ColdFusion.I am going to add one more site SiteD.MyWork.org - also on the H drive.These are my server details:System InformationServer DetailsServer ProductColdFusionVersion9,0,0,251028 EditionStandard Can I add the new site or do I need to install the enterprise version of ColdFusion? If I need the enterprise version, is it as simple as changing the license or do I need to actually install it?Thank you
Hi:I tried to connect up in Flash Builder 4 Beta to a Database Service that I created with the Create CFC wizard in ColdFusion Builder and I can't seem to make it work. The getAll function generated in the Gateway.cfc file doesn't seem to do things similar to the demo files in the getting started videos, as it seems to do a lot of extra processing to reconstruct the result set from a query object into a collection before handing it back. As a result of this, Flash Builder does not seem to be able to populate a grid based on the getAllItem.I'm a real newbie to Flash Builder, so it could easily be something simple that I've just done horribly wrong, but I've been stuck on trying to create and populate a simple grid from a CFC link to one of my legacy tables in SQL Server. I get the column headings correctly, and apparently the right number of rows, but all the rows managed to populate only a 0 as the value of any Numeric field and blanks for all the text fields.Another
We have had no problems using Oracle up to this point, and have been using ColdFusion and Oracle very happily for a long time. Due to security requirements where the ColdFusion server is hosted, the following changes were made to the Oracle client on the Oracle RDMS machine which caused ColdFusion to be unable to connect. In the sqlnet.ora file, we had to add the follwing line:SQLNET.ALLOWED_LOGON_VERSION = 10That parameter was required, it is not optional and we cannot lower it.Info about our ColdFusion Server:System Information Server Details Server Product ColdFusion Version ColdFusion 10,285437 Edition Enterprise Operating System Windows Server 2008 R2 OS Version 6.1 Update Level /D:/ColdFusion10/cfusion/lib/updates/chf10000011.jar Adobe Driver Version 4.1 (Build 0001) We are using Oracle 11.2.0.3 Once that change is in place, connections from our ColdFusion server get refused with the following error:ORA-2804
Hi, I know this problem has happened before, but after all the research and follow all the things I can do, I still stuck.so this is my code:<cfquery>select a, bfrom table 1</cfquery><cfdocument format = "flashpaper"><cfoutput>#a#, #b#</cfoutput>Nothing fancy. however, a and b are in Japanese font. the HTML file display the character just fine, as do the excel format.I change my jvm.config with "-Duser.language=ja -Duser.region=JP". I also edit the cffont.properties to be the same with cffont.properties.jaI also install the Japanese support fornt pack for the server using "yum install "@Japanese support"on Adobe reader, I also install Asian support language pack. The result still the same when I run the code, the japanese character returns as boxes.I am not sure what else to do so my character come out correctly.I am using Centos 6, coldfusion 10 - developer edition, and postgres 9, my database has UTF-8Any suggestion? PLEASE!!!
I haven't been able to find a definitive answer on this: Is Coldfusion 10 Standard limited to 5 websocket connections or 100 websocket connections? The official documentation states 5, but http://www.carehart.org/blog/client/index.cfm/2012/5/15/cf10_enterprise_or_standard_restrictions and http://www.sagarganatra.com/2012/03/html5-websockets-in-coldfusion-10.html mention limits of 100.Thanks
I created a search result page. User who has no login/password can see the search result but it is read only while user with login/password can do more with the search result.My page is started with: <CFIF IsDefined("url.uid") > <CFSET userid ="#Decrypt(url.uid,application.mySecretKey,"AES","hex")#"> This page is doing just fine except when user left the page idle for sometime then comes back and refresh the page. That's the time whenan error shows up:It seems that CF can't decrypt the url.uid after the page becomes idle for awhile.The error:The following information is meant for the website developer for debugging purposes. Error Occurred While Processing Request An error occurred while trying to encrypt or decrypt your input string: com.rsa.jsafe.crypto.dr: Could not perform unpadding: invalid pad byte.. My Application.cfc looks like this: <cfcomponent name="Application"> <cfscript>&
Recently we had to add ojdbc6.jar to our CF10 lib folder since the Oracle drivers (version 😎 shipped with CF10 did not meet STIG requirements. We have run into an issue where we get "PLS-00306: wrong number or types of arguments in call to..." to all of our procedure calls now. Had anyone experienced this when using Oracle drivers other than the ones shipped with CF10?Errr Detail:ErrorCode 6550 Message ORA-06550: line 1, column 7: PLS-00306: wrong number or types of arguments in call to 'GENERATE_PTDSCHED' ORA-06550: line 1, column 7: PL/SQL: Statement ignored SQLState 65000 StackTrace java.sql.SQLException: ORA-06550: line 1, column 7: PLS-00306: wrong number or types of arguments in call to 'GENERATE_PTDSCHED' ORA-06550: line 1, column 7: PL/SQL: Statement ignored at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:445) at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:396) at oracle.jdbc.driver.T4C8Oall.processError(T4C8Oall.java:879) at
Said OK and installed the package. Restarted install. Still get message. Tried installing manually, restart install, still get message. Restarted machine, restart install, still get message. Uninstalled all redistribution package for 2008, reinstalled manually and with OK button. Restarted install, restared machine. Still get the stupid message. Help please.
When loading webpage with CFTREE tag it does not work. I am getting ClassNotFoundException - coldfusion.applets.CFTreeApplet.class.
Please follow the link below for the job details.http://jobs.epsys.co.uk/
I have a scheduled task that I have deleted at least 5 times and it keeps re-apppering the next day in the Sheduled task ib the administrator. I also looked in the Neocron,xml file and it appears to be gone right after deleted. Any help/suggestion would be appreciated.
We recently upgraded from CF9 to CF10. The cfmap gave errors that the Google API wasn't correct. When I looked into it, it appears that the Google API key expires after 1 day.Do we still need the api key for cfmap to work in CF10? Anybody have any ideas on this?
How do I have a default value pre-selected using cf_twoselectsrelated?I'm using the default fields, but nothing is selected when the page loads.Thanks for any guidance.
Hy guysMy team have a problem with a Coldfusion (version 8,0,0,176276). Apparently this issue has a relation with queries that spend a long time to return some result, making the poll to open more connexions with the database until stop the application.Actually the high number of connexions is a reflex of this issue, a consequence and the same way that is the fail on the application.I would like to know if exist a way to debug the calls to database? this information will help my team a lot.Thank you.Herbert Dias
I have a database that I'm pulling some funding numbers out of. There are columns for state, year, funding amount, and project #.I need to display them in a table by year, then state, sort of like this:1992[ California | Route 152: Santa Clara Co. | HW12345 | $000,000 ][ California | Route 154: Santa Barbara Co. | HW54325 | $000,000 ]etcI have the following code: <cfquery name="by_year" datasource="byways_grants">SELECT project.funding_amt , project.proj_year , project.proj_name , 'SB-' & project.proj_year & '-' & project.state_code & '-' & project.st_proj_no AS project_no , state.nameFROM projectINNER JOIN state ON state.code = project.state_codeWHERE funding_amt > 0ORDER BY proj_year, state.name, proj_name</cfquery&g
This question was posted in response to the following article: http://help.adobe.com/en_US/ColdFusion/10.0/Developing/WSf23b27ebc7b554b664dd90601357fb06a77-7ffc.html
how to color the tabs of <cflayout>? Because i am getting an error in java script "Uncaught TypeError: Object [object Object] has no method 'getTab'"?? please help me out...
Am attempting to upgrade to ColdFusion 10 (patched to current level) on our development network. We are running Windows Server 2008 R2. On both of the below instances it worked fine with ColdFusion 8 and 9.On the first instance the entire site is SSL with the exception of one directory. The entire site is set to Anonymous Authentication Disabled and Windows Authentication Enabled for the entire site except for the one directory that is not SSL. On ColdFusion 10, that one directory that is not supposed to be SSL and have anonymous authentication will not allow access unless you hit it with an https: and authenticate. It ignores the settings for that directory and uses the overall site settings.On another instance the entire site is set to Anonymous Authentication except one file (login.cfm) is set to Windows Authentication. When you enter that site it hits the login.cfm, if you authenticate it gives you more options. If you don't you still get
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.