The official community for ColdFusion.
Nyligen aktiv
Hi, I have this old web application that I'm working on. In the application, I am able to attach files. Does anyone know how to save the files attached to IIS virtual directory?
I have a ColdFusion 9 application I inherited that signs into an Outlook email box then processes email, downloads attachments, and saves emails sent to it into a database for long term storage. This solution is working fine until it gets an email where there are attachments embedded into the message body.The basic process for an email with attachments is as follows:1. Check for and save new email to database2. Check for and save listed attachments to storage filer3. If it has attachments, check to make sure attachments were downloaded.4. If has attachments and attachments were downloaded, mark email for delete.5. Email deleted from inbox.The problem I am encountering is in emails where the attachments are embedded into the body of the message.For example, when I outputSUBJECT: My Email with Embedded Images and DocumentsATTACHMENTS: image001.gif image002.gif image003.gif image004.gif image005.gif image006.gif image007.gif 1200084.DOC.DOCATTACHMENTFILES:As you can see it says there are
I have started using an on-prem certificate authority on my domain and assigning certificates for various purposes. Now when I try to connect to one of my coldfusion sites it asks me if I want to use a certificate to authenticate myself. None of them work for CF.Is anyone using this type of authentication and if so how do I enable it so I can use my certs? I am running CF10 Enterprise on Server 2012 using IIS.
So this problem has been driving me completely bonkers.CF10 update 18, RedHat 6.7 64 bit. Java 1.7.093We noticed a similar problem with coldfusion 10 update 14 last year, and rolled back to update 13. Recently we pushed out update 18, which fixed some issues, but did not fix CF restarting into a hung or dead state.I have gone as far as uninstalling CF10 completely, reinstalling a fresh CF10, doing the mandatory update, and then doing update 18. Creating two fresh new instances, a new cluster, and configuring apache connector to use said cluster. Its about as out of the box as I can make it.With this physical box quiesced in my hardware load balancer (not taking requests) I can happily restart the two CF instances all day long without much problem (maybe the occasional hang, but rare). The trouble starts when I put the box back into production and allow it to start taking requests, and then restart a CF instance. At least one CF instance w
Server: CF10Platform: Windows and Linux (Win in DEV windows in PROD)So I'm generating this awesome excel file for a client but having trouble getting date fields to behave properly. Everything else seems to work just fine but when I send the data to excel to be generated, excel treats it as just text and when this filed gets sorted it handles it as such.More info: The column I'm trying to configure is called Arrival Date it is arriving formatted as mm/dd/yyyy (I have tried to format is as m/d/yy but when it arrives in the sheet that doesn't work as well)I'm also including an image of the sorted row. It does think its a valid but just doesn't sort it in chronological order. Code:<cfset filename = expandPath("./TDYData_(#DateFormat(now(),'mmddyy')#).xls")><!--- Make a spreadsheet object ---><cfset s = spreadsheetNew("TDYData")><!--- Add header row ---><cfset spreadsheetAddRow(s, "TDY Phase,Full Name,Employment Category,Gender,Originating Agency,Agency Comments,
After installing CF Builder 2016, the "Available Software Sites" for builder is added as:https://cfdownload.adobe.com/pub/adobe/coldfusion/cfb31pluginsrepo/It is deselected by default. But if selected, eclipse errors with:"No repository found at https://cfdownload.adobe.com/pub/adobe/coldfusion/cfb31pluginsrepo/."I recall a similar bug in CFB3. Is there a different repository that we should use?We are running both 32b and 64b CFB2016 as a plugin on Eclipse Neon (32b and 64b)
I've been using ORM for a while, but just started getting into using EntityLoadByExample(). I thought this would be great, but I've run into an issue. Say I have an object "Art" and it has a many-to-one relationship to "Artist" (many arts may have the same artist).So my sample Art object would be like:component displayname = 'Art' { property name='artID' fieldtype='id' generator='identity'; property name='title' type='string'; property name='Artist' fieldtype='many-to-one' CFC='Artist' fkcolumn='ArtistID'}My sample Artist Object would be like:component displayname = 'Artist' { property name='ArtistID' fieldtype='id' generator='identity'; property name='Name' type='string';}So, lets say I have an artist in my DB:ArtistIDName1Monet2RembrandtAnd let's say I have some "Art" in my DB:ArtIDtitleArtID1The Water Lily Pond12Woman with a Parasol13Poppies14The Night Watch25The J
We recently bought ColdFusion 2016. We are deploying ColdFusion as jee configuration to wildfly 8. Wildfly is running in standalone configuration with 2 instances [ no domain configuration here]. We are facing some session issues. For ex, accessing 'admin console 1' logs out 'admin console 2' within same browser. We have tried setting jsessionId configurations as per multiple suggestion across different sites. Any help is much appreciated. Thank you
I have a jQuery that sends the data via post to my proxy ColdFusion page. However, in the this page, I'm not sure how to go about retrieving those values. I tried to log the following in my CFHTTP tag:<cflog text="URL: #URL#" type="Information" file="CGIparameters"> <cflog text="URL-Name: #URL.name#" type="Information" file="CGIparameters">But I always get this error: "NetworkError: 500 Complex object types...erted to simple values. - https://devbox.mysite.com/customcf/kb/proxyPost-KB.cfm"This is the JavaScript that's posting to the proxy page. However, I don't think there is anything wrong with the JavaScript. I tried putting static values in the CFHTTPPARAM and there is no errors. It was able to send the data to JSON API.$(function(){ $("##frmComment").submit(function(event){ event.preventDefault(); $("##submitResponse").append('<img src="../../../assets/mysite/img/aja
Hey everyone! I was put in a position with a data development group last year. We use ColdFusion and ColdFusion Report Builder for applications and reporting on our clients side. I've been recently working more and more with reporting as oppose to the ETL stuff I had been doing. I have found some tutorials on ColdFusion however when it comes to the Report Builder I find a lack of information on using this. Everything I've learned has been through trial an error modifying/working with already created reports. Are there any good resources out there I can use to get better at creating reports from the ground up?We currently use a queries.cfc file that we link all of our reports to to find the underlying data queries but as far as being able to add new bands or really do more than just modifying existing contents....I'm at a loss. What resources does everyone recommend?Thanks!!
Where can I get coldfusion 11 or 12 64-bit developer edition.My hosting company has upgraded and I need to support the new version.
Hello, all,Y'know.. in all the years that I've been coding in CFML, it never once occurred to me to ask the following question, but here it is..If I have a page as such: <!DOCTYPE html> <html> <head><title>Unknown Comic</title></head> <cfinclude url="menu.cfm"/> blah blah blah - foo bar <cfinclude url="footer.cfm" /> </html> Does the application.cfc trigger only once (for the document, itself)? Or does it trigger once for the document, then once for each include (total of three times for above example)?V/r,^_^(Forgive the n00b question - it just never came to mind until now.)
Is there a semester class/course one can take?? The CFWACK book is old and there is little if any support if you get stuck.
Notre entreprise possede une Licence valide de Coldfusion 7 MX qoui faire pour faire une mise à jour à Coldfusion 11
I am running CF11 update 4 on Windows 2012 R2 IIS 8.5. I have multiple users setup to access the CF Admin Console. All the individual accounts started throwing a 500 - Internal Server Error only when we click the "Settings Summary" link on the left navigation pane. Looking at the exception.log shows the following error:"Error", "ajp-bio-8014-exec-3","03/04/15","10:32:10","cfadmin","The current user is not authorized to invoke this method. The specific sequence of files included or processed is: D:\ColdFusion11\cfusion\wwwroot\CFIDE\administrator\reports\index.cfm, line: 105 "The default admin account is not having this issue.Please advise. Thanks
(this is a cross-posting of a question I asked on Server Fault: ColdFusion fails to include custom HTTP response header set in IIS 8.5 - Server Fault)I have a Windows 2012 R2 server running IIS 8.5 and ColdFusion 11. Under a specific directory ("mydirectory") I added an HTTP Response Header (Name: X-ResponseHeader, Value: Test). The resulting web.config section looks like this:<?xml version="1.0" encoding="UTF-8"?><configuration> <system.webServer> <httpProtocol> <customHeaders> <add name="X-ResponseHeader" value="Test" /> </customHeaders> </httpProtocol> </system.webServer></configuration>I
Where can I download a copy of ColdFusion Builder 3.0.0.0 Build 292922? I have licenses for this but not the 2016 version. Thank you.
Hello, does anyone know if you can install ColdFusion MX7 on a Windows Server 2008 64-bit Operating System? Thanks. Tim
Hi,My CF version is being displayed as: 10,0,9,284568 There seems to be an issue in the server updates, updates section of CF admin. None of the buttons relating to updating or downloading work (the submit changes button at the bottom does). It seems like CF has stalled at some point during an update. The server has been rebooted and it hasn't had any effect. I've attached a screenshot (of the top half of the screen, bottom half just shows other updates and ends with the standard update settings section).If anyone has any idea how to resolve this it would be much appreciated.Thanks,Robin.
Do I need to have any programming experience before working with Cold Fusion? If yes, what programming languages do I have to know? Thank you!)
Hi All, still working on QoQ.How can I pivot or unpivot the data from a QoQ? I know I can do this before the QoQ, but I have a complex collection of data and I want to use the QoQ result.I am thinking on looping thru the query and create a new query.Does anyone know any generic function? Any ideas?Thanks in advanced.
I want to create DataSource using ColdFusion Administrator API. All my credential are correct that's for sure. I have followed this tutorial and also Adobe Tutorial. I don't know what am doing wrong in here. <cfset adminAPI = createObject( 'component', 'cfide.adminapi.administrator' ) /> <cfset adminAPI.login( 'CFAdminPass', 'admin' ) /> <cfscript> dsnAPI = createObject( 'component', 'cfide.adminapi.datasource' ); dsn = { driver = 'mysql5', name = 'cfdb', host = 'localhost', port = '3306', database = 'cfdb', username = 'root', password = 'mysqlpass' }; // Finally, we save the new datasource dsnAPI.setMySQL5( argumentCollection = dsn ); </cfscript>
I'm trying to send JSON data via CFHTTP. Is this all I need or do I need to do anything else? I want make sure I'm not missing anything. <cfhttp url="https://app.kb.com/api/head/comment.json" method="post" timeout="15" throwonerror="true" > <cfhttpparam type="url" name="_authbykey" value="56ec1f0123131c78636142d6"> <cfhttpparam type="url" name="project_id" value="55c4ffd123131c527e294fe6"> <cfhttpparam type="url" name="article_id" value="#artID#"> <cfhttpparam type="url" name="content" value="#form.message#" /> <cfhttpparam type="url" name="public_name" value="#form.name#" /> <cfhttpparam type="url" name="public_email" value="#form.mailfrom#" /> </cfhttp> Thank you!
Am shifting from a machine that had CF9 on it, then the Splendor Beta, now with CF11 and though I've re-installed CF11 multiple times and have tried various methods I've seen in other threads (including the passwordreset.bat and using localhost) no matter what when I go to the Configuration and Settings Migration Wizard after install to get things going I get "Invalid Password. Please try again." Very aggravating as I'm eager to get rolling with CF11 fully and this is such a goofy roadblock.
In this pdf editor, When giving hyperlinks to within document the particular linked page gets opened and that particular section of the page is gets displayed. But our requirement also includes that the hyperlink should also contain “ Inherit Zoom” . After giving hyperlinks and providing “ Inherit Zoom” the particular page gets opened but the link does not display the particular section but it displays the top of the particular page.
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.