The official community for ColdFusion.
Recently active
Under development server, CFGRID show data , all is fine , correct. (CF9.0 version dev)Under production server , CFGRID does not show data, only a grey line (like a HR).How to debug this ?Thanks,
I have written an app for a client which sends emails as part of confirmation. We have noticed that some domains will block the email ie btinternet.com email addresses will block the emails. However, if the client emails from their own email address the customer will receive this email. What could be blocking this email? We are using CF9 Here is my email code: <cfmail to="#customer_email#" from="#from_email#" bcc="#blankemail#" subject="#email_subject#" type="html"> <cfmailpart type="text/plain"> <cfoutput>#plain_email_text#</cfoutput> </cfmailpart> <cfmailpart type="text/html"> <cfoutput>#html_email_text#</cfoutput> </cfmailpart> </cfmail>
When installing Coldfusion 10 standard in 2008 R2 Server, at the final stage asking me to enter admin password. Although I knew the password I entered is correct but it still said it is invalid.Searching in the internet, some said to disable the admin.security in 'neo-security.xml' to bypass the login page. It works, but when update the password, it happened again. This issue seems applyinig to 2008 R2 Server only.Is there any patch to solve this issue? Thanks.
I am not getting the debug output that should display when Enable Request Debugging Output is checked. I am not talking about enable robust exception information, which works fine. I am setting up a new Windows 7 computer for development (8MB RAM). I installed CF10 (version 10,283922) running on Apache 2.2.24, connecting to an oracle 10g database over VPN. Debugging IP address is 127.0.0.1. The server is very slow without debugging output and impossibly so with debugging output turned on, and then the output doesn't even display.My previous Win XP pro computer ran cf8 on IIS with the same database and the debugging output worked. The performance was slow and I assumed it would be better with 64 bits and more RAM. Needless to say I am dissapointed to find that it is slower. Any thoughts on how to display debugging output or why the performance is so bad?ThanksAnne
The subject may seem confusing, but it is very simple really. I am new to CF and I am trying to utilize the same DB, but call different values based on where the content is on the page. I have found a way for it to work, but it seems clumsy and extraneous at best. This is the way I have found to do it:<cfquery name="getGame25" datasource="dbtest">SELECT gameID, gameName, gameDev, gameYear, gameConsoleFROM tblGamesWHERE gameID = 25</cfquery><cfquery name="getGame24" datasource="dbtest">SELECT gameID, gameName, gameDev, gameYear, gameConsoleFROM tblGamesWHERE gameID = 24</cfquery><cfquery name="getGame23" datasource="dbtest">SELECT gameID, gameName, gameDev, gameYear, gameConsoleFROM tblGamesWHERE gameID = 23</cfquery>......<cfoutput query="getGame25"><div class="showcaseText"><p><h1>#gameID#. #gameName#</h1></p></div><table><tr><td>Developer:</td><td>#gameDev#<
Hello; I have a question regarding the Coldfusion Security Bulletin APSB13-03 for ColdFusion 10, 9.0.2, 9.0.1 and 9.0. Is this hotfix also availablefor Coldfusion 8.01? We use the Coldfusion 8.01 enterprise version.Patched on the last available hotfix APSB12-21 -> Security update: Hotfix available for ColdFusion 10 and earlier. By regulary scanning our systems a finding regarding CVE-2013-0632 was found by the scanners, to resolve with APSB13-03. Is APSB13-03 available for Coldfusion 8.01? Core support ends 7/31/2012 (the last hotfix for cf 8 wa from 11/2012!) But extended Support reaches until 7/31/2014. frank
The Systems Support matrix for Cold Fusion 10 references Red Hat Enterprise Linux 6.1? Is Cold Fusion 10, not supported in RHEL 6.3?
I am trying to launch a file when the user clicks on a link. Sometimes the filename has a # sign in the name, like "My File #1.xlsx". When they click it, they get an error saying "The file specified in the contentTag does not exist" and then the shows .../My File not found.Additionally, though I can't remember for sure at the moment, I think I've had trouble with a few other characters such as ^, *, ?, ", <, >, |. And consecutive periods (.) like My...Filename.xlsx. However, I can live with that problem but not the # in the filename! Surely there's something I can do to launch such a file. Here's what I'm using:this is the call: <td><a href="./fileopener.cfm?attached_file=true&file_location=#qryGetFileNames.ServerDirectory#\#qryGetFileNames.ServerFile#">#qryGetFileNames.ServerFile#</a></td><cfset file_location = "#url.file_location#"><cfheader name="content-disposition" value="attachment;filename=#file_location#"><cfcontent deleteF
Hi all,I have the query is displayed the check boxes. I'd to validate and make sure at least one check box needs to be checked. The code i have below is not working. Can you please help.ThanksKT<cfinclude template="userCheck.cfm">script type="text/javascript"> function validate(oForm) { var numChecked = 0; for (var idx=0; idx<oForm.category.length; idx++) { if (oForm.category[idx].checked == true) { numChecked++; &n
Hello, everyone.I'm working on a Solr collection of documents that are stored as BLOB in an Oracle database. Documents can be .pdf, .txt, .doc(x), or .xls(x).Is there a way of getting the text of these documents so that the collection can be properly indexed?Thank you,^_^
Hi Team, Currently we are facing an issue in Scheduled Tasks options in ColdFusion 10 while we attempting to schedule some tasks. We are using the same facility successfully in ColdFusion 7 Standard edition up to now and the Schedule Tasks works perfectly in that version. Also the same Scheduled task option we have tested successfully in CF 10 Trial version (Developer Edition) before we purchased the license. Once we updated with the Standard License all schedules were deleted from the list which we scheduled in Trial Version and when we have tried several options to create new tasks, we continued to get the following messageAn error occurred scheduling the task.Advance Scheduling support is not available in this edition of ColdFusion server. Also as we have checked under Server Updates in CF 10, there is no available updates are listing. Kindly let us know is there any workaround on this issue. Best Regard'sMadu
Take a look at the following bit of CFML:<!---\\ This is a coldfusion comment \\---><cfif false> <cfsavecontent variable="Test"> <?xml version="1.0" encoding="utf-16"?> </cfsavecontent></cfif><!---\\ Some other coldfusion code \\---><cfset Foo = 'Hello '><cfset Bar = 'World'><cfset FooBar = Foo & Bar>Seems like some simple test code right? Shouldn't generate any output at all right? Now take that sample and go run it. Are you staring at a jumble of oddly encoded characters that basically contain all of the unprocessed CFML code on the page? Because that's exactly what I'm looking at.It's the craziest thing! The root issue is the "utf-16" attribute of the XML declaration. If you remove that or change it to
HiIs there way to include fragments of html files from external website/domain into a coldfusion web page. Currently, we run CF8 version but, if required upgrade to CF10.Thank you in advance
Hi All,After installation CF10 and our report, i am able to login to the report.after some time all of a sudden I am getting the below error and i am unable to login to our reporting module."current user is not authorized to invote this method error"when i checkd the logs suprised that CF is looking some file under E:\cf10_final\cfusion\wwwroot\CFIDE\adminapi\accessmanager.cfcI dont have Drive E in my pc.can some one help me to solv the problem? (any patchs / workaround), Installed hotfix7 and mandatory patch in our computer.Thanks in advance.------------------------------- logs start---------------------------------------------"The current user is not authorized to invoke this method. The specific sequence of files included or processed is: C:\inetpub\wwwroot\da-idcsap001_TM\index.cfm, line: 48 "coldfusion.runtime.CustomException: The current user is not authorized to invoke this method. at coldfusion.tagext.lang.ThrowTag.doStartTag(ThrowTag.java:142) &nbs
I am unable to get any of my ColdFusion websites to resolve on a new server Windows 2008 R2 server (IIS 7.5) with Plesk. The issue appears to be permission issues between CF and Plesk but I cannot figure them out for the life of me. I have run and re-run the web server configuration manager about 15 times as administrator. I have the most recent hotfixes installed. I was able to get the CF Administrator to load on the default website, but none of the other domains. Even having done so I have had to create the Jakarta and CFIDE directories manually on the other domains. So I suspect this is a signe of a permission issue. What permisison settings do I need to put in place so that Plesk and CF10 play well together?I am getting the following generic error.500 - Internal server error.There is a problem with the resource you are looking for, and it cannot be displayed.I get this even when trying to load a jpg file.Chad
Hi I use the below code to export the data from ldap query to excel <cfheader name="Content-Disposition" value="attachment; filename=Report.xls"><cfcontent type="application/vnd.ms-excel"><meta http-equiv="Content-Type" content="text/html; charset=utf-8">But special characters appears as (?) symbol is excel sheet even though it displays correctly in browserIn Browser:In Excel:I even tried using <cfprocessingdirective pageencoding="utf-8" />But still it appears same..Pls advice
This question was posted in response to the following article: http://help.adobe.com/en_US/ColdFusion/10.0/CFMLRef/WSf23b27ebc7b554b643f7f2ef13585b7b669-8000.html
I have an Access 2010 DB like the one shown in Fig 1 below and I am using Coldfusion 10 Trial to query this database. Atwork I am continually asked for "group" reports which means that therequestor wants to see everyone in a particular person’s group. For example, ifI get a request to see everyone in David Drew's group then thefinished report would look like Fig 2. below. Can someone please help me with the coldfusion code that might accomplish something like this?Thanks very much.Fig 1.FirstName Lastname EmpID MgrEmpID Email LocationAlex Anderson aaaa noManager Alex.Anderson@nomail.com PhiladelphiaBrooke Brown bbbb aaaa Brooke.Brown@nomail.com PhiladelphiaCarol Clark cccc aaaa Carol.Clark@nomail.com PhiladelphiaDavid Drew dddd aaaa David.Drew@nomail.com PhiladelphiaErin Eisley eeee bbbb Erin.Eisley@nomail.com PhoenixFelicia Ford ffff bbbb Felicia.Ford@nomail.com PhoenixGrace Griffin gggg cccc Grace.Griffin@nomail.com PhoenixHenry Howard hhhh cccc Henry.Howard@nomail.com PhoenixIan Ive
I'm trying to schedule a task that will run every Sunday. I have tried several options and I continue to get the following message...An error occured scheduling the task.Advance Scheduling support is not available in this edition of ColdFusion server.My version is the following..Server Product ColdFusion Version ColdFusion 10,283111 Edition Standard Operating System Windows Server 2008 R2 OS Version 6.1 Update Level /C:/ColdFusion10/cfusion/lib/updates/hf1000-3332326.jar Adobe Driver Version 4.1 (Build 0001) I've updated with the Mandatory update and still have this issue. Is there a work around or when should this be resolved?
having a wierd issue here. i believe it may be a bug in CF.code:<cfftp secure="true" action="open" server="#ftpserver#" port="#ftpport#" username="#username#" password="#password#" fingerprint="#fingerprint#" connection="myftp"><cfftp action="getfile" connection="myftp" remotefile="testfile.txt" localfile="E:\tmp\testfile.txt" transfermode="binary" passive="true"/>throws errorAn error occurred during the sFTP getfile operation. Error: File Exists: E:\tmp\testfile.txtFolder view shows a file testfile.txt 0 bytes. and it's locked (presumably by cf server)It seems like the operation is creating the file stub, but has some problem writing to it, then complains that the file exists when cf created the file in the first place.this is only in secure mode. in regular FTP mode, code runs perfectly.Stack trace:coldfusion.tagext.net.SftpHandler$SftpOperationException: An error occurred during the sFTP getfile operation. at coldfusion.tagext.net.Sftp
I want to pass my date parameters to my stored procedure.Because MS SQL uses format like 'YYYY-DD-MM', I want to convert cf_SQL_Date to the reight format to pass CFQUERY. I need include single quote.I have following code, it seems that it does not work.Your help and information is great appreciated,<CFIF NOT isdefined("StartDate")> <CFSET form.StartDate = #DateFormat(NOW() - 20 , "'yyyy-mm-dd'")#> </CFIF><CFIF NOT isdefined("EndtDate")> <CFSET form.EndDate = #DateFormat(NOW(), "'yyyy-mm-dd'")#> </CFIF><cfquery name = "mydata" datasource = "MyDSN"> execute MySP #form.StartDate#, #form.EndDate# </cfquery>Regards,Iccsi,
I'm a newbie so please excuse if this is a simple question. I've not found discussions that seem relevant so far though.On ColdFusion 8, at random times a file in cfclasses exists with file size is zero. When the file exists, the web site has trouble. If CF cache is cleared, life goes on normally.Any suggestions on how to troubleshoot to see what is causing the 0 KB file, and how to stop it from happening, will be much appreciated.
Hi there.Please I know how to configure. Flex with CF 8 and CF 9.But with CF 10, i get an error "Invalid root, when I use the project wizard from Flex 4.xI do need help. I tried to create the project but I get the error.
We have coldfusion 8 application server (Enterprise Edition) installed in one server. There is a plan to upgrade backend SQL server from 2005 to SQL server 2012 with windows 2008 as Operating system . When we checked the below url regarding support for Coldfusion 8, we found SQL server 2008 and SQL server 2012 missing in the Page3 (Database platform support included)http://www.adobe.com/products/coldfusion/pdfs/cf8_systemsupportmatrix.pdfAbove url seems to be updated very long back.We would like to get a confirmation that whether Coldfusion 8 will support SQL server 2012 ?Any Inputs or suggestions will help us in proceeding further
HiIm new to coldfusion. Yesterday i updated one of our servers with HotFix 4. It went fine. Now im trying to update it on another server but on Server Settings - Settings Summary.I dont see the field Update Level as i did on the other server. Does that mean It never installed a Hot Fix on it? can i just install hotfix 4?New Server infoSystem InformationServer Product: ColdFusionVersion: 9,0,1,274733Edition: StandardOperating System: Windows Server 2008OS Version: 6.0Adobe Driver Version: 4.0 (Build 0005)ThanksMihael
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.