Questions
Als letztes aktiv
Is anybody else not able to use the "Check for Updates" tool under the Help menu? Adobe said that a CFB3 a bug I had filed is fixed now, so I wanted to try it out. But I can't get the built-in updater to work. I get this:I'd hate to have to uninstall CFB3 and reinstall the new version...
Hello,I'm looking for the installer for ColdFusion 9.0.2. It's been removed form the adobe site. I've already reached out to technical support via chat - but they sent me to the main adobe support page (the one without support numbers). Does anyone know where I can grab 9.0.2 updates or have a number in which to call someone about it?Thank you,Michael
I'm experiencing a Object has been closed message when calling an oracle package with no parameters using cfstoredproc.I am running ColdFusion 11.It looks like the issue is the way the call is made. It's doing a call to the package without creating () at the end of it.spy(ajp-bio-8014-exec-9)(2014/06/09 12:47:29.565)>> Connection[20].prepareCall(String sql)spy(ajp-bio-8014-exec-9)(2014/06/09 12:47:29.565)>> sql = {call PACK_UT_HOT_NEWS.USP_DEL_UT_HOT_NEWS}spy(ajp-bio-8014-exec-9)(2014/06/09 12:47:29.565)>> OK (CallableStatement[9])spy(ajp-bio-8014-exec-9)(2014/06/09 12:47:29.565)>> CallableStatement[9].setMaxFieldSize(int max)spy(ajp-bio-8014-exec-9)(2014/06/09 12:47:29.565)>> max = 64000spy(ajp-bio-8014-exec-9)(2014/06/09 12:47:29.565)>> OKspy(ajp-bio-8014-exec-9)(2014/06/09 12:47:29.565)>> CallableStatement[9].execute()spy(ajp-bio-8014-exec-9)(2014/06/09 12:47:29.565)>> java.sql.SQLException: [macromedia][Oracle JDBC Driver]Object
Hi,Is it just me or is the ability to use the internal browser not in CF builder 3?The 2 buttons at the bottom of each page that used to be there aren't anymore, does this mean I have to use a separate browser window?
CF builder 1 Vs CF builder 3Hi I just upgrade my Flash builder to 4.7 version and I'm thinking to upgrade my Cold Fusion builder from version 1 to version 3.I have never used Cold Fusion builder in the past and I thought I will start using it now.Should I upgrade to version 3?What are the difference between version 1 and version 3?Thanks in advance.
Does Coldfusion 7 & 8 versions support Java 7 update 55?
Hello I have setup CF10 Enterprise on several sandboxes , each of these sandboxes have been configured with several ColdFusion instances which are of course tied together with IIS using the tomcat java connector. My question is if I make a change on the main CF Administrator page (http://127.0.0.1/CFIDE/administrator/) with a specific setting does it propagate to all of the instances I have created? Do I have to go into each instances specific CF admin page( http://<instance>/CFIDE/administrator/) and make a setting change for it to show up when loading up that CF page?
I need to crate an authentication using active drectory users but need them to use sAMAccountName as unique identifier ? Currently the user name is like "cn=*,ou=*,dc=*,dc* . How it should look like if using a sAMAccountName ?
I need to retrieve some data from a database using CFQUERY, and then translate that data into another language (so Spanish, Chinese, etc).- The Google Translator will be sufficient for now since the data is simple instructions - not a long article.The Javascript function that Google provides causes a dropdown menu to appear when the page is loaded. I want the translation to take place automatically, having selected the language on a previous page.#googtrans can be put in the URL to translate the whole page. However I only want to translate the database content - not the entire page. So, for example, part of the page would be in English and the other part (from the database) in Spanish / Chinese.I found a good article on this on a blog some five years old. However it is evident that Google have changed their API since then, and so the blog code no longer works.Can anyone cast any light on this?Thanks in advance.
From the query GetTotalStars i get the correct data:So right now im oupting the results depending on the month , and i have another query thatgets me the months: select distinct [month] from GetTotalStars order by [month], But the problem is that is not all the totalstars is outputing to the correct month. How will i be able to output the results in the correct month and year,since right now i only have 2014 data, but obviously someday i will have 2015.so will be like having two different tables 2015 and 2014. <thead> <tr> <th>Department</th> <cfoutput query="qryMonths"> <th>#MonthAsString(qryMonths.month)#</th> &nb
Working with this tag for the first time in a trial version of CF 11. I'm unable to pass any URL vars with the source without error, for both .cfm and .html pages. For example, source="myPage.html" works as expected, but source="myPage.html?x=1" throws a 500 error.When the urltoken is not passed with the source when the source is a .cfm page, the session (login) is not recognized and we get thrown to the login page.
Hi everyone, I hope someone can help me. I have a server with firebird and a database ( i cant touch that server) so I had to configure another server with CF, now, I need to connect CF with firebird on the other server to be able to read the database. The servers are in the same network (they are next to each other)Thanks.
Hey team,I'm currently using CF9 and I'm writing code in an external .CFC component (in cfscript) and I'm trying to create a cfreport (or a Coldfusion Reports Builder equivalent) using only cfscript.I have accomplished the creation of a cfreport in an external .cfm page using the syntax <cfreport format="PDF" template="templates\templateA.cfr" query="#dataRecordset#"> and I am essentially trying to replicate this using only cfscript. Has anyone accomplished this before? Please help! Thanks! 😃
I downloaded and installed Coldfusion Builder 2 and liked it. I decided to purchase it and found that Coldfusion Builder 3 had been released. I purchased Coldfusion Builder 3 after my trial had expired. I then uninstalled 2 and installed 3. I attempted to register my product but nothing shows that it was successful or unsuccessful and my license key does not show up under Previous Serial number in Help->License Adobe Coldfusion Builder.I am unable to do a global search of my project and the syntax highlighting no longer works in the cfquery tags as well as the built in server does not start. It is almost like the application thinks I am still using an unlicensed version. I have uninstalled and reinstalled several times as well as rebuilt my workspaces from scratch and yet none of this has fixed the issues. I am on a Windows 7 enterprise 64 bit machine. Let me know if you need any further information.
Greetings,I am having trouble getting a .net dll that I have created to work with my ColdFusion 10.The .dll was created using .net framework 4This is what I am doing...first I did this<cfobject type="dotnet" name="UpdateBUI" class="PCSData.PCS_BUI" assembly="#expandPath('./PCSData.dll')# >I got an error that said this,Class Npgsql/NpgsqlConnection not found in the specified assembly list.Npgsql.dll is a .net dll that I am including in mine. So I read up on it and found someone saying that you have to include all assemblies. So I then did this,<cfobject type="dotnet" name="UpdateBUI" class="PCSData.PCS_BUI" assembly="#expandPath('./PCSData.dll')# , #expandPath('./Npgsql.dll')#, #expandPath('./Mono.Security.dll')#">Which results in.The C:/ColdFusion10/cfusion/wwwroot/WEB-INF/cfclasses/dotNetProxy/ D:/PCS/testObj/Npgsql.dll file specified in the assembly does not exist.So I am not sure what I need to do with this. Any help would be greatly appreciated. &
Hello,I having an issue in pdf generation through cfdocument. It is cutting of the top of some of the characters. I am running cf 12 developer version. I have seen this happen in 8 as well. I think it happens when the text is wrapped in a table. Here is the code that I used. I have also seen it splitting off a jpg image (small image like a company seal) in two pagesThank you in advance.<CFDOCUMENT format="pdf" > <table cellpadding="2" cellspacing="0" border="0" align="left"> <tr><td> Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus arcu diam, malesuada pellentesque augue non, faucibus molestie elit. Nullam porttitor dolor id ante dictum tristique. Mauris vitae tellus nec justo varius sollicitudin vel quis nisi. Aliquam erat volutpat. Aliquam erat volutpat. Phasellus congue est id nisl aliquet iaculis. Suspendisse porttitor lectus nec urna blandit, in tincidunt l
I am running ColdFusion 11 on IIS 8.5 and attempting to display a simple flex form. It generates the infrastruction for the form in the browser. However, when it attempts to access the <unique number>.mxml.cfswf file I see a 404 in the IIS log.Any help in troubleshooting this issue would be appreciated.
Can anyone help me with this, I am trying to make use of the EU's VAT number checker, I have the location of the WSDL, but my CF knowledge is basic at best and I am struggling to grasp the complexities of how to make the cfc talk to the remote server and give me the information back. I am not particularly after anyone to create the code for me because I would like to do it myself ideally but if anyone has an example CFC that they could show me that would do something similar I would be most greatful.http://ec.europa.eu/taxation_customs/vies/checkVatService.wsdl - wsdl location if you would like to see it.
Could someone explain the essential technical differences between Cold Fusion Standard version 11 and Cold Fusion Standard version 11, Academic please?I have searched the Adobe website but could not find an answerWould be grateful for a reply.Have a great day!Kind Regards
I switched over to using application.cfc not too long ago. One thing I have struggled with is how to set variables that I use on individual pages of my site like I used to do in application.cfm. I have some passowrds for sftp services etc that I used to set in application.cfm. I have not been able to figure out how to make them work with application.cfc so I can call them where I need to. I have tried setting them in onrequeststart, onapplicationstart etc. but nothing seems to work. The variables are never defined. Does anyone have a working example of how to set variables that can be used on your site globally?Is there a better way to store account passwords and variables like that that I am missing?
Coldfusion 10 on marverics, all updates are up to datetried to send email:<cfmail to="yal9012@nyp.org" from="yal9012@nyp.org" subject="test email"></cfmail>I got blank page. Checked the mail.log:-----------------------------"Error","scheduler-1","06/05/14","15:14:04",,"The ColdFusion mail spool encountered an invalid spool file in the spool directory. The invalid file Mail1565737694416095906.cfmail was moved to the undelivered directory."-----------------------------in exception.log-----------------------------"Error","scheduler-1","06/05/14","15:14:04",,"The ColdFusion mail spool encountered an invalid spool file in the spool directory. The invalid file Mail1565737694416095906.cfmail was moved to the undelivered directory."coldfusion.mail.MailSpooler$InvalidSpoolFileException: The ColdFusion mail spool encountered an invalid spool file in the spool directory. at coldfusion.mail.MailSpooler.processFile(MailSpooler.java:2292) at coldfusion.mail.MailSpooler.retrie
The project I'm working on is accessing it's data from a MS Access db. When creating a new person in the database there are several tables where data has to be inserted and updated.I had the problem, that when the second, third… insertion fails, the first one is already done. So I wanted to wrap the insertions in a cftransaction, so when a call fails the other ones get rolled back.But now no insertion takes place, even when there's no error. I haven't found reliable information whether it is possible to use cftransactions together with MS Access dbs. Is there any definite statement if it works with MS Access at all or with which version it will work?Hope you can help me out.
I'm having a problem with xmlParse and CF11. I have a site running perfectly under either CF9 or CF10. It uses xml files for various site settings and static content. Under CF11 I'm receiving the following:An error occurred while Parsing an XML document. Invalid byte 2 of 2-byte UTF-8 sequence.I've sent the document through various xml validators, no issues. Like I said, the exact same document parsed fine under CF9 & CF10 -- in fact it was created by CF9 and/or CF10. Any ideas on what might be causing this (other than a CF11 bug) and a possible work around. (it's hard to create a work around when I'm not even sure the issue)BTW, I downloaded and installed the latest CF11 yesterday. A check for updates does not show any available.
Using Ext-JS drop down menus and the flash cfgrid with the wmode set to anything has no effect. According to the docs, set wMode to transparent or opaque and everything else should float over it. It doesn't do anything and I am starting to remember why I never used this feature before. Adobe, tell me how to fix this yesterday please!
Hi Everyone,I'm looking for a CF10 download link? I used to be able to download older versions here:Adobe - ColdFusion Support Center : More DownloadsHowever since the release of CF11 I haven't been able to find it anywhere on the Adobe.comCheers,Chris
Remix with Firefly Community Gallery
Thousands of free creations to fall in love with and remix in Firefly.
Sie haben bereits einen Account? Anmelden
Noch kein Konto? Konto erstellen
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.