Using latest Lucee 5.4.6.9 in Debian docker container.
Currently our app runs on Adobe ColdFusion 2021 and I’m trying to see how much effort it would be to convert to Lucee.
App is currently a mix of older legacy code and newer modern FW/1 code.
Having an issue with cfinclude. We do things like this:
<cfinclude template="/admin/modules/queryDumpLib.cfm" runonce="true">
Where the included file contains some code - maybe a combination of JS and CFML - in this case it will take a query and display it in a dataTable.
runonce
works fine in ColdFusion but in Lucee it causes the app to error saying it can’t find code which exists in the include. If I simplify the included file to just have a string of text it still doesn’t display. Removing ‘runonce’ and it works fine.
The docs here mention so I assume it should work
4 posts - 3 participants