Uploading large files via HTTP can be a challenge. It can result in timeouts and frustrated users. Additionally, large uploads may not be possible if your hosting provider imposes HTTP file upload size restrictions (most do). The solution is “chunking”. Chunking involves breaking a single large file upload into multiple smaller files and uploading the […]
read moreRan into an issue with the sendMail resource within the Microsoft Graph API. Calls to: https://graph.microsoft.com/v1.0/users/<USER>/sendMail Resulted in this response: { “error”: { “code”: “ResourceUnhealthy”, “message”: “MdbReplicationProtectionUtilizationMonitor is unhealthy.” } } Based on the information I can find it appears to be related to throttling. The response should contain a retry-after header that provides the […]
read moreUPDATE: Confirmed bug https://tracker.adobe.com/#/view/CF-4219706 There appears to be a bug in the cfhtmltopdf tag running on ColdFusion 2023. The orientation attribute is ignored. <cfhtmltopdf orientation=”landscape”> <h3>Test Landscape Output</h3> </cfhtmltopdf> This is the output:
read moreWith SMTP Relay being increasingly phased out within Office/Exchange 365 I decided to migrate some of our application email to Microsoft Graph. In order to use Microsoft Graph API to send email you’ll need to have an Exchange 365 account and a licensed user/inbox. To access the Microsoft Graph API your program will need to […]
read moreAs part of a recent project I needed to lookup and export data from Oracle NetSuite using PowerShell. It took me several hours of spinning my wheels on this problem, but I was finally able to connect. I’m writing this post in hopes that I can save someone else a little time and hair pulling. […]
read moreAfter manually applying an update to one of the ColdFusion servers I manage I started getting this error when opening the ColdFusion Administrator console: The administrator module is not installed. You can install module through CLI package manager(CF_ROOT/bin/cfpm.bat) by running the command : install administrator. Executing the suggested command showed what appeared to be a […]
read moreIf you’ve ever needed to use ColdFusion to manipulate Word documents, you might have tried a 3rd party library like Doc4J or Apache POI. While these libraries are very robust I found them to be limiting in different ways. Apache POI lacks built-in mail merge capability (which to me seems very odd given the information […]
read moreThere seems to be a potential bug in ColdFusion 2021 Query of Queries. Today I ran into this error: Index 5 out of bounds for length 5 null The index bounds will change based on the number of columns in the query as explained below. This error was being thrown in a very basic QoQ: […]
read moreI found that after changing the password for a MongoDB NoSQL DSN using ColdFusion Administrator you need to restart the ColdFusion Application service in Windows. Even changing to the correct password will cause a MongoDB authentication error: Exception authenticating MongoCredential{mechanism=SCRAM-SHA-256, userName='{Your Username}’, source='{Your Auth Source}’, password=, mechanismProperties=} null Command failed with error 18 (AuthenticationFailed): ‘Authentication […]
read moreIf the checkboxes within the WordPress Admin do not appear checked. You may need to verify that your Content-Security Policy (CSP) allows “data:” as a source. Example: default-src data: ‘self’ *.googleapis.com *.gstatic.com;
read more