The official community for ColdFusion.
Recently active
Hi everyone - this is silly, I know, but...I'm a designer who can code a bit, and I have issues with font management on my system (I have about 2,000-odd fonts). so, Cleverdix here decides to quickly write his own ColdFusion font manager, easy peasy. Import all the font families into a database, add my own delimiters (such as "oh yeah" and "Crap" and 'handwritten") so that when I look for a font, I can run a query, and find the fonts I'm looking for. Heaven! Got the database set up, works like a charm.Except, of course, it does not, because coldfusion doe snot want to render the fonts. Do a bit of digging, and I find this gem:<cfset adminObj = createObject("Component", "cfide.adminapi.administrator")><cfset adminObj.login("password", "user")><cfset rtService = createObject("component", "cfide.adminapi.runtime")><cfset fonts = rtService.getFonts()>Ta-dah! absolutely brilliant - I now have a struct with all my fonts... within a struct
TLDR version - ColdFusion MX 6.1 will work on Windows 10 64-bit if you use 32-bit Apache 2.2.x, and not IIS, as well as following some instructions.Just concluded an extended struggle trying to get the ancient, but licensed, ColdFusion MX 6.1 running on Windows 10 Enterprise. We have highly-formatted web reports written long ago in CFML that are still in use, and the developer does not have the time to rewrite them in modern technologies like SQL Server Report Services or even ASP.Net. I wanted to document the process of getting this installed in the unlikely case someone else in the future needs to get this done.Important URLshttp://mc-kenna.com/computery/2006/09/coldfusion-mx-61-with-apache-22-on-windowsAdobe - TechNote : ColdFusion MX 7.0.1 and 7.0.2: Hot fix available for Apache 2.2 supportWayback MachineNote that URLs #2 and #3 rely on the Internet Archive to retrieve the Adobe TechNote and the hot fix wsconfig.zip file.URL #1 documents the essential procedure to
Hi All,Trying to insert 200K records to Oracle 12c.We did this concept couple years ago, it is taking 6min doing the inserts:Re: pass query to oracle Is there a better technique do to a faster bulk insert to Oracle with the new version of ColdFusion?We are using CF11 but we can upgrade if it is necessary.Thanks,Johnny
CF 11,0,15,311399 on RedHat Linux 7.6 x86-64I'm trying to send email using cfmail() and our local smtp server prefers the use of X509 certifcates for authentication and TLS rather than the more usual username/password mechanism. Is this possible is CF11?I see stuff about keystore, keyalias, etc but that seems more for digitally signing the email. And stuff about recipientcert and encrypt seems more about encrypting the actual body of the email being sent using the recipient's public key./certificate.Thanks,PH
Hello, all,I've got a query that isn't running within my CFM document; however, if I copy/paste the SQL from the error message into SQL Developer, it does just fine.Windows Server 2012 with Oracle 12 and Windows Server 2012 with CF10 Server.I'm creating a query object from scratch (QueryNew()) and trying to insert that data into a table.My code is:<cfquery name="insertData" datasource="#application.dsn#"> INSERT ALL <cfloop query="myQuery"> into tableA(ID, ORG_ID, NAME, CITY, STATE, ZIP) VALUES ('#varA', '#varB', '#varC', '#varD', '#varE', '#varF') </cfloop> SELECT * FROM DUAL;</cfquery>The error message is very vague, and yet if I copy/paste the SQL from the error message into SQL Developer, all the data is inserted.Confuzzedly,^_^
We are currently running Coldfusion MX7 with MS SQL Server 2008. We need to upgrade to SQL Server 2012 (as a minimum), but understand that is not compatible with MX7. We really should upgrade to a later version of Coldfusion too, but to minimise business impact and risk we are searching for a short term work around.1. Are there are official drivers/plugins that can be provided to allow CF MX7 to work with SQL Server 2012?2. If not, is there a way we get hold of an official copy of Coldfusion 10 as that will work with SQL Server 2012?
I have 12 or so coldfusion 11 servers.On several of them I have individual pages in CFIDE/admin that will not display.I get: An error occurred while executing the application. Please try again or contact the administrator.On one of the servers I cannot access any of the links on the left.On another everything works except the scheduled task.
Anyone use the tool with a website with more than one instance? Sometimes on a second pass I will get the service is not running errors, other times I will get that there are no IIS websites that need locked down. We have one website with four running instances. But I have yet to get it to work on the second pass, what good is it if it will only work for one instance?
Hello, all,I'm attempting to use (within CFSCRIPT) queryNew() and querySetCell() to create a database object, then use qry.execute() to SELECT data from it.I have tried many variations, each giving a different error message. I cannot figure out what I'm missing, and I'm pretty sure it is something really simple.<CFSCRIPT> cities = queryNew('cityID,cityName','varchar,varchar'); queryAddRow(cities,10); querySetCell(cities,'cityID','1',1); querySetCell(cities,'cityName','New York',1); ... querySetCell(cities,'cityID','10',10); querySetCell(cities,'cityName','St. Louis',10); myQry = new Query(); myQry.setSQL("SELECT cityID, cityName FROM cities"); myQry.setDatasource('cities'); qryRes = myQry.execute(); return qryRes;</CFSCRIPT>The above is within
We were running the 2016 trial, which expired. Our application is currently a bit crippled. Now trying buy the 2016 version or extend our trial (a week or so) until we have time to plan a migration to 2018. We have already purchased 2018. Any help would be fantastic. I have spend over 3 hours trying to reach someone to talk to. Submitted a support request via chat and they said I may not receive a call back until tomorrow. Scott T.
Today, we’re very excited to announce the 2018 release of Adobe ColdFusion. This release builds on Adobe’s industry-leading solution for creating and deploying scalable, high-performing web applications in CFML. Now in ColdFusion, we’ve added an all-new Performance Monitoring Toolset, a standalone server with low overhead to control and optimize applications and a new auto lockdown installer to help increase security in the Production Server. In addition, web developers can now boost the performance of their applications by taking advantage of Asynchronous programming and various other language enhancements. And, upgrading to the 2018 release immediately allows applications to run 30 percent faster.“The enormous digital transformation that we are witnessing around us has made it an absolute necessity for organizations to quickly adapt to changing market developments,” said Tridib Roy Chowdhury, senior director of products, Print and Publishing, Adobe. “A secure platform, that is not on
Hi,I have the following cfdiv that works just fine.Is there away to capture the value in DaysAvailable when it comes back and place it in another variable?<cfdiv name="DaysAvailable" bindonload="no" bind="cfc:#this.LOC#.common.hcbsservicemath.getDaysAvailable({StartDate@change},{EndDate@change})">Thanks,Mike
We're trying out CF-2018 with an application that uses FrameWork/1 and one of the first thing we have hit is:coldfusion.compiler.ASTliteral cannot be cast to coldfusion.compiler.ASTtagAttributeThe error occurred in ...\framework\one.cfc: line 1842 Called from ...\framework\one.cfc: line 1869 Called from ...\framework\one.cfc: line 260 Called from ...\framework\one.cfc: line 2967 Called from ...\framework\one.cfc: line 9911839: private string function normalizeQueryString( any queryString ) {1840: // if queryString is a struct, massage it into a string1841: if ( isStruct( queryString ) && structCount( queryString ) ) {1842: var q = '';1843: for( var key in queryString ) {1844: if ( isSimpleValue( queryString[key] ) ) {I've googled and found no references to "coldfusion ASTliteral ". Help.
Hello,I am hoping that someone else has done this.I am working on a modification to a ColdFusion site I have inherited and I have to admit that I am more or less a newbie to ColdFusion, although I have worked web applications and Databases for many years.I am working on a reporting application that output information on requests. The requests can either be completed or delegated. If they are completed the database column comp_time will be populated. If the request is delegated the comp_time column will be null and a column named delegate_date will be populated.I have come up with the query that will look at both of these fields and and make them into one field. (That part was easy and is highlighted in red)select sr.request_id,sr.supp_id,sr.entry_date,sr.po_num,(NVL(sr.comp_time, sr.delegate_date)) comp_time,sr.first_article,rd.detail_id,rd.po_line,rd.qty_ready,st.surv_name,rd.qty_expected,rd.qty_accepted,s.supp_name,s.city,sr.delegate_date from source_request sr,request_detail rd,surv
Its a new setup on my laptop, all configuration is exact similar to prior. I see an issue now with cfinput type datefield 11/30/2018 is an invalid date or time string. i have tried changing system date and time to mm/dd/yyyy format. Reinstalling Coldfusion multiple times. Someone please suggest whats wrong here ? As the same set of code works on other systems.<cfinput type="DateField" class="gcText9pt" name="end_dt" value="#DateFormat(end_dt, "mm/dd/yyyy")#" required="Yes" validate="USdate" size="10" maxlength="16" message="Enter a valid Fiscal End Date (e.g. mm/dd/yyyy )" mask="mm/dd/yyyy">
Hi,I’m migrating from cf11 project to CF18 with the help of this resource (https://forums.adobe.com/message/10661306#10661306). I have kept a copy of cf11 neo*.xml files and uninstalled cf11. Proceeding further and installing cf118 and done kept the neo*.xml files in the cfuion/lib folder, I have done the configurations of IIS and CFAdmin properly. But after all the setup I’m facing Java.null.pointer exception. I have checked the java and jvm section of cfadmin where the JVM Argumentslooks like this (-Xdebug -Xrunjdwp:transport=dt_socket,server=y,suspend=n,address=5005 -server –add-opens=java.rmi/sun.rmi.transport=ALL-UNNAMED –add-opens=java.base/java.nio=ALL-UNNAMED –add-modules=java.xml.ws –add-opens=java.base/java.lang=ALL-UNNAMED –add-opens=java.base/sun.util.cldr=ALL-UNNAMED –add-opens=java.base/sun.util.locale.provider=ALL-UNNAMED -XX:MaxMetaspaceSize=192m -XX:+UseParallelGC -Xbatch -Djdk.attach.allowAttachSelf=true -Dcoldfusion.home={application.home} -Duser.language=en -Dcoldfu
Hello,Years ago I buyed a Coldfusion 10 with a 64 bits license, currently I developed some tools to Coldfusion but the services are in 32 bits.So, I need to uninstall Coldfusion 10 64 bits and install 32 bits.My question is this: Can I use a Coldfusion 10 64 bits license to Coldfusion 10 32 bits?Thanks!
Hello everyone, I have cfml code that needs to be converted to cfscript. The most of the code I was able to convert but the cfquery part that has the loop seems little complicated. Here is example of the cfml code:<cfquery name="insertRec" datasource="db" result="qryInsert"> INSERT INTO Contacts (First, Last, Email, Subject, Description) <cfif trim(form.type) EQ 1> VALUES( <cfqueryparam cfsqltype="cf_sql_varchar" value="#trim(form.first)#" maxlength="50">, <cfqueryparam cfsqltype="cf_sql_varchar" value="#trim(form.last)#" maxlength="50">, <cfqueryparam cfsqltype="cf_sq
I created a data source in ColdFusion to connect to a CFusion user in SSMS (SQL server management studio) but when I try to connect to the user through CF admin I keep getting a login failure, I have the user mapped to the database I want to connect to and the user is also a dbo, the password is the same and I have all of the right settings in the CF administrator I have TCP enabled I've tried reinstalling both ColdFusion and SQL server yet nothing is working, I don't know what I'm missing.[Here is the list of all Adobe forums... https://forums.adobe.com/welcome][Comments is to ask about the operation of the Forum, not a specific program][Moved from the Comments forum to the specific Program forum... Mod]
When i open /cf_scripts/scripts/ajax/ckeditor/plugins/filemanager/upload.cfm ,have a error.so, how can solve the problem ?
Hi,I have a CF 11 for my testing environment.I have set an instance in that application. The issue is I can open my instance administrator page but can't open the cfusion one.It just gave me a blank screen and when I look the server log it said the session manager is failed.Has anyone has a similar issue and know how to solve it? Please let me know if you need more information. Thank you.Kind Regards,Raquel Septiane
I have a cfm page with 30-40 links on it. These links send emails with attachments to different clientsI need to un this page and all of these links via a scheduled eventRather than creating 30-40 scheduled events to open each link and send the emails, is there a way to go to the page and have CF open all the links?Link1Link2Link3Link4....Link40
Uisng CF11 and need to set up a SAML SP, are there recommendation from Adobe? Currently my organization is an Enterprise customer. Not finding a ton of useful info online relate to this.
Persistent cookie(CFID and CFToken) have default expiry date 30 years ahead from the current date.In our application, the security team finds this data vulnerable and here is the dump snippet provided :Set-Cookie: CFID=576199; Expires=Wed, 15-Jul-2048 10:26:57 GMT; Path=/;Secure; HttpOnlySet-Cookie: CFTOKEN=d52d0264379150e2-C2C656EB-9A1E-386D-0418A9B7776141C5;Expires=Wed, 15-Jul-2048 10:26:57 GMT; Path=/; Secure; HttpOnlyX-Xss-Protection: 1; m...TRUNCATED...How can the expiry date of CFID and CFToken be modified?Is there any configuration present in Cold fusion Admin ? And after the modification, how can the change be checked ?
Помогите, пожалуйста, решить проблему с установкой ColdFusion 2018. Я не могу установить ее как администратор. Это ссылка на скриншот. https://drive.google.com/file/d/0ByTjaoWa086rWVBTa1JsdW1rdWc/view?usp=sharing
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.