The official community for ColdFusion.
Recently active
x = nullif (x != null) {} Both of these statments fail when used in a custom tag. Both statements succeed when using in the requested template or a template that is included in another template. This issue occurs when using tag or script syntax. Can anyone else reproduce this issue? Version: 2021,0,03,329779 Message: Variable NULL is undefined. Stack Trace: coldfusion.runtime.UndefinedVariableException: Variable NULL is undefined. at coldfusion.runtime.CfJspPage._get(CfJspPage.java:462) at coldfusion.runtime.CfJspPage._get(CfJspPage.java:417) at coldfusion.runtime.CfJspPage._get(CfJspPage.java:396) at coldfusion.runtime.CfJspPage._autoscalarize(CfJspPage.java:2363) at cfrendercourse2ecfm589117369.runPage(C:\home\evansville.edu\custom-tags\course\rendercourse.cfm:2) at coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:257) at coldfusion.filter.CFVariablesScopeFilter.invoke(CFVariablesScopeFilter.java:56) at coldfusion.tagext.lang.ModuleTag.doStartTag
I'm running into a rather strange issue and I don't know how to debug it. I'm using a per-application datasource feature in the `Application.cfc`: this.datasources[ "bennadel" ] = { .... } And, when I restart the ColdFusion service is sometimes says that the datasource cannot be found. This "state" seems to hold for the entire life of the application, and all requests coming into the application are breaking. But then, if I restart the ColdFusion service again, it works fine (probably). I'm kind of stumped here - not sure how to even go about debugging this.
Hello. On the Adobe Help site, I'm seeing a notice on many array functions about CORBA being removed for CF 2021. I'm trying to find a future-friendly way to, for instance, see if a value exists in an array. ArrayContains, ArrayFind, ArrayContainsNoCase and ArrayFindNoCase have the CORBA removal notice. Is there a built-in function that works for CF 2021 that does a similar thing?
How to code 'queryFilter'. I followed the instuctions CF user guide to the letter (and all other variations) and I'm still stuck.
What is the best method for displaying 360-degree images on a ColdFusion website?I'm developing 360 images with hot spots where the user can click on part of the image and have data popup in a new window displaying properties / drawing links.Can CF handle this directly or do I need a Java / Jquery or another third-party app to complete this project?
Hello All,My name is HP. I am working for Leidos and our team is supporting one of the FAA's CF applications.I am assigned to find the way to make connection from our CF application to a sharepoint server.I have never done it (using CFSharepoint) before.The sharepoint administrator provides me with User Name, Password and the URL. Manualy I am able able to log in this URL with User Name, Password they provide me.however the below is my code is to hit/connect their URL give me an error <cfsharepoint action="getlistitems"WSDL="https://xxx.xxx.xxx/ajg/apt-archive/Lists/JAT/AllItems.aspx"username="xxxx"domain="https://xxx.xxxx.xxx"password="xxxx"authtype="Basic"name="listCollection"/><CFDUMP var="#listCollection#"> This is the error I got when I ran the above codes. Unable to read WSDL from URL: https://xxx.xxx.xxx/ajg/apt-archive/Lists/JAT/AllItems.aspx.Error: 401 Unauthorized. It is recommended that you use a web browser to retrieve and examine the requested WSDL document to
The 2016 and 2018 releases of ColdFusion are available as Docker images. Get started today. Charlie Arehart (he needs no introduction!) presented Docker for ColdFusion in CFSummit 2019. Check out his presentation and get on the Docker bandwagon in a matter of minutes. Whether you're a developer, an admin, or any stakeholder in your engineering team, there's value in understanding containers. Get started with containers today. Thank Charlie and I later! Charlie's presentation in CFSummit 2019.
A funny thing happend last night. A loop over the hours hit 2:00 and failed a createDateTime. So I added guard programming to test validity using isDate(), to skip the items in spring forward DST are not there (2:00 hour). It still failed. Apparently isDate is build on top of createdateTime, but instead of capturing it internally and returning false as it should, it throws an exception. This does not seem like the correct behavior for isDate().Sample code: <cfset response = isDate("3/13/2022 02:00:00")> Date value passed to date function createDateTime is unspecified or invalid.coldfusion.util.DateUtils$InvalidDateException: Date value passed to date function createDateTime is unspecified or invalid.at coldfusion.util.DateUtils.createDateTime(DateUtils.java:1503)at coldfusion.runtime.CFDateTimeParser.toDateTime(CFDateTimeParser.java:592)at coldfusion.runtime.CFDateTimeParser.parseTime(CFDateTimeParser.java:356)at coldfusion.runtime.CFDateTimeParser.parseTime
Hello We are using ColdFusion 2016 for our production server and the following vulnerablity has been reported. Currently we are on the latest update which is Update 17.Current Update: ColdFusion 2016 Update 17Update Level: 17Update Type: SecurityInstall Date: Tue, 07 Dec 2021 06:54:19 -0800 Below are the details for vulnerablity:The detection logic checks for the following -Software versionsApache Tomcat versions 8.5.0 (including) up to 8.5.47 (including)Software detected on this deviceApache Tomcat 8.5.32.0
Hi All, I need help with ColdFusion Deployment profile. My deployment profile currently shows "Development" in Deployment Profile. I need to convert this to "Production" profile and apply the license Serial Number without re-install. How can I do? ThanksRam
I am running docker destop and coldfusion 2021 local , I need the ajax package but i am unable to install it via package manager via the cfadmin or via cli. here is the error messages i get ... An error has occurred while installing the package ajax. Please check logs for more details. An error has occurred while installing the package ajax. Exception : Script folder /app/cf_scripts/scripts not found. Ajax package has been downloaded at /opt/coldfusion/bundles/ajax-2021.0.0.323925.zip. If you have created a mapping of cf_scripts folder, you can copy the contents of the downloaded zip into CF_SCRIPTS/scrips/ajax folder any help would be apriciated
This question was posted in response to the following article: http://help.adobe.com/en_US/ColdFusion/10.0/CFMLRef/WS578003649f39bc20-258e7ab21350d4577c9-8000.html
Hi, We recently did a upgrade from CF2016 to CF 2021 and a couple of our functionality is not working. Getting the error <servername> didn’t send any data. ERR_EMPTY_RESPONSEThe request has exceeded the allowable time limit Tag: cfoutput The specific sequence of files included or processed is: /var/www/html/WW/App/index.cfm, line: 8 How could we resolve this? Any help is appreciated very much. ThanksSajan
Hello,I'd like to pull specific data off a page using cfhttp if it's possible. I start by getting the entire page.<cfhttp url="https://somesite.com/stream/" result="test"> <cfdump var="#test#">In a perfect world, I'd like to extract just the first occurrence of the title and artist from the results into two variables.<li><span class="song-time">1:49 PM</span>&nbsp;<span class="song-title">Wanted Dead Or Alive</span>—<span class="song-artist">Bon Jovi</span></li>Is there a way to capture everything between the two span classes into two variables? I don't need the time span. Thanks!Gary
We are using ColdFusion 2018, update 13. Our setup is that we are an internal shop with a production environment, test environment and the each developer has a local development environment on our PC's. We have a situation where a colleague is using a CFDocument tag which formats and generates the pdf great on a few of the development environments, but does not on all. The formatting is also not working on our test or production environment. Below is the cfdocument tag with <cfdocument format="pdf" pagetype="A4" orientation="portrait" fontEmbed="true" unit="cm" localUrl="true" filename="#somefilename#.pdf" overwrite="yes" marginLeft="0" margintop="0" marginright="0" marginbottom="0"> <div> some formatted html </div> </cfdocument> This is what it looks like when it works: This is what it looks like when it does not work: Any help is appreciated in what to look for.Thanks.
We've all built forms that use common reference data like country codes/names, states, etc. Historically I've always stored this type of information in a database that I would query as needed. However, some types of reference data may change once in awhile (e.g. zip/postal codes) and maintaining that data across apps can be a bit cumbersome. Now that I've started thinking about apps from a modular HMVC approach (Coldbox fanboy here), I played with the idea of moving reference data into an external module that could be more easily updated and shared, both between apps and with the CF community (e.g. Forgebox).To play around with this concept further, I created a generic module called "DataLib" that would store US States. The first thing I did was eliminate the database dependency, and instead, I stored all of the reference data as a .json file residing in the module. I then created a component that, when instantiated, would read the reference data and deseria
Hi, I have configured IIS and installed Cold Fusion 2021. When I try to launch the website URL, I am receiving 404 message: HTTP Error 404.3 - Not Found The page you are requesting cannot be served because of the extension configuration. If the page is a script, add a handler. If the file should be downloaded, add a MIME map. How can I add a Mime in the handler mapping? Thanks.
Hi, I am using ColdFusion 2018. I am printing a word document (dynamic) using the below code. But there are multiple issues. One is that the image (please refer screenshot) is not aligned. I want the image to be placed on top on extreme left and top (topmargin=0 and leftmargin=0). Also after the image i am placing a text which is not displayed in the generated word document. Please help. If there is a better way to generate word document in coldfusion please post that too. <html><head><style> body { margin:0; } </style></head><body><img src="https://www.getinge-training.com/images/TopHeader.jpg" width="1429" height="496" border="0"></body><cfheader name="content-disposition" VALUE="attachment; filename=1.doc"><cfoutput><table border="0" cellpadding="0" cellspacing="0"><cfset type="application/msword"><tr><td><img src="https://www.getinge-training.com
I'm creating PowerPoint slides using cfpresentation and cfpresentationslide. Database values appear no problem, but images just get an X using hmtl <img src="image.jpg">. I tried putting the images into the same directory as the cfm page, but still nothing. I tried using <cfimage source="image.jpg" action="writeToBrowser"> and even put it in the database as a BLOB and pull it <cfimage source="#image#" action="writeToBrowser">. Nothing works. Please help. Using ColdFusion 11
how to do a two-dimension array in script?
We got a request in today to update java to 11.0.14 (latest). This is our only 2021 server, but it's been up for a bit and unfortunately was installed prior to the version that defaulted to java 11.0.11. We have no issue moving to any version from 11.0.2 up through 11.0.10. Any version after that won't start the service. The only output for an error is:Element JDKPATH is undefined in FORM. The specific sequence of files included or processed is: E:\ColdFusion2021\cfusion\wwwroot\CFIDE\administrator\settings\jvm.cfm, line: 227 "
Hello community,on our new server with CF2021 (Upd. 3), there are regular errors appearing in the exception.log with the following content:"Error","scheduler-2","03/01/22","10:17:21","","The cause of this output exception was that: coldfusion.tagext.sql.QueryParamTag$InvalidDataException: Invalid data value VERTEILER2_PROD_16409_c752c3705ca7899c-AF13A205-D150-F002-4AE23F50F4561FE2 exceeds maxlength setting 40.. The specific sequence of files included or processed is: '', line: 115 "The application "VERTEILER2_PROD" has long-running sessions which are kept alive by regular "pings" sent via javascript from the client's browser, even when there is no user interaction. Don't ask, this is a non-negotiable requirement by some high-level users and has not caused any trouble so far. Apart from the above entries in the exception.log, I haven't had any user feedback about problems. The application itself was migrated without any code changes from the previous CF2016 instance to the new one with
I have allowconcurrent set to FALSE for my CFLOGIN, and it works the way the documentation suggests: if someone starts a new session from a different browser or computer using the same credentials, the original session's Auth User is set to null (GetAuthUser() EQ ""); it's easy for me to detect this and clear the old user's information. But this is the opposite of what I need. I want to trust the original session, and prevent any other user from logging in with those credentials while the first session is open. I can't figure out how to do that. Is there any way to detect in advance that the session for a particular credential already exists, and log out the NEW session instead of the OLD session? Or, rather, prevent the New session from being logged in at all? <cflogout session="others"> seems again to be weighted toward the new session always being the valid one, and that's not what I need. Thanks for your advice!
We have applied patch 13 to our ColdFusion 2018 Sunapsis server. The two files below are still on the server and are in use by ColdFusion. Regarding the information below, should we now have the security issue resolved? Thanks, Lewis I got more information about this. I had wrong information before. According to our lead developer, Tim, you will not be able to completely delete those files. sunapsis does not use those .jar files but ColdFusion *does* so they should not be deleted.Per Tim:Adobe is moving off of Log4J 1.2 for whatever the next update is.Coldfusion has 2 different versions of Log4J. It has Log4J 1.2.x and Log4J 2.x. 2.x was upgraded to 2.17 in Update 13. 1.2.x was left alone but is still used.You *could* unzip the .jar files and remove the specific class files and re-zip them, but you cannot delete the entire file.Adobe on Log4J 1.2.x vulnerability: &n
Hola, Alguien podría ayudarme, busco una forma de aplicar variables de ambiente PROD/DEV, y poder desde ahí tomar los valores como URL o credenciales de servicios Web o APIs , etc.
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.