The official community for ColdFusion.
Recently active
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
Just did a new CF10 Windows install (not my first) on a fresh 2008R2 server. Everything ran fine after the install, all of the service packs installed fine. Since it needs to deal with other servers, I have a domain account that all of the CF servers use for the service logins. As soon as I change the login on this installation from the service account to the domain account (and restart CF), any attempted access to CF gets a 500 error. Access to the default IIS page works fine. I went into IIS and under Authentication changed the "connect as" for the physical path to be the domain account, restarted everything, still no luck. Then I went into Windows Explorer and made sure that everything under C:\inetpub\wwwroot had permissions for the domain account (even though this was a 500 error and not an access denied error). Same thing, no luck.Gotta be something stupid I've done, or forgot to tell the IT guys to do when then installed everything. Anyo
This is on a ColdFusion 10 install on Windows 2008 R2 with IIS 7.5. We have an additional authentication module, Cosign, installed for single sign-on.If I make a request for https://[servername]/test/ and dump the CGI variables, cgi.auth_type is set to Cosign and cgi.auth_user and cgi.remote_user are both set to my username.If I make a request for https://[servername]/test/index.cfm and dump the CGI variables, cgi.auth_type, cgi.auth_user, and cgi.remote_user are all set to [empty string].Some of the things we've tried (largely based on the posts Coldfusion 10 with IIS 7 Windows authenticaiton and cgi.auth_user not staying set😞Moving the Cosign module to the top of the modules list in IISEnabling Windows auth at the server level in IIS (index.cfm then required additional authorization beyond Cosign)Enabling Windows auth at the directory level in IIS (no change--remote_user not populated)Disabling Anonymous auth at the server level in IIS (index.cfm then returned a 401 Unauthori
I tried posting this in the general CF area two weeks ago with no reply, so I thought I'd try here.I applied the hotfix last week and everything seemed to be working, thought all was well. It turns out that forms that used to work without a hitch suddenly generated error 500 with no clue as to the real issue. These forms are simple fill it in, create a pdf file, display the file. Nothing too creative. With no error message, and nothing to tell me what is going on with this, I was forced to unload hf901-00005.jar and go back to hf901-00003.jar It is all working again, but I'd really like to have the security patch AND have my forms work. Any clues??
This question was posted in response to the following article: http://help.adobe.com/en_US/ColdFusion/10.0/CFMLRef/WS932f2e4c7c04df8f-6f7941141353e2963af-7fff.html
When I clicked on Check For Updates, it says there are no update sites to search. Do you wish to open the "Available Software Sites" preferences?Once I open that, which site should I add in?Thanks
I am running a Windows Server Standard VM using VMWare with 4GB RAM and a 32 bit OS. Everything has been fine until about a week ago when emails stopped going out. My ColdFusion Email settings are:Connection Timeout 60 secondsSpool Interval 30 secondsSpool mail messages for delivery is checkedWhat happens is the emails go to the spooler folder just fine but they then get moved to the undelivered folder. BUT, when I manually move them from the undelivered folder to the spool folder, they then go out just fine.My mail log file says "Error","Scheduler-1","05/22/13","14:07:24",,"failed to connect" for every email.Thanks for any helpDave
I see on the controls tools bar has FORM and CFFORM.I would like to know what are the difference between FORM and CFFORM when I drap drop the control on the form.How I can access the controls value on the FORM and CFFORM?Your help and information is great appreciated,Regards,Iccsi
I'm a little new to using cfinput. I always use HTML input. I have radio buttons for gender. When the form is submitted, the value is entered into a db column 1 or 2: <cfinput name="g" id="g" type="radio" value="1" required="yes" /> F<cfinput name="g" id="g" type="radio" value="2" /> I want to check one by default depending on the value stored in the db column when the form loads. I'm able to use a CFIF statement to check one by default in the HTML radio like: <cfif rs.g eq 1>checked="true"</cfif> but you're not allowed to have cfif in a single cfinput tag. How do I do it.
Got a massege saying Form is meant for website developer for debuggin purposes. Error occurred while processing request of life insurance through Acuuquote. Please help me. Thank you.
<tr><cfoutput query="myDirectory" maxrows="1"> <td align="center"><a href="#Name#"> <cfimage source="#Name#" name="Name1"> <cfset ImageScaleToFit(Name,200,"")><!--- ---><img src="#Name#" /><br />#Name#</a></td> <cfif myDirectory.currentRow MOD 3 EQ 0></tr><tr></cfif></cfoutput>Whenever I try the code above I get the following error "Unable to cast an object of type java.lang.String to Image. "How can I use this tag and resize images that are stored in the variable Name and get them to display correctly? HELP!
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.