COMMANDBOX : CFCONFIG Setting

Hi,

Can someone please let me know how to add the below setting in cfconfig or server.json to preserve “key case”

processingdirective preserveCase=“true”;

We need to preserve case for the entire application.

I believe the cfconfig.json key for ACF 2018 is :

“dotNotationUpperCase” : false

Thanks Jon,

I’m using Lucee server, Will “dotNotationUpperCase” : false works in Lucee.

The best way for you to find all of the setting keys specific to that engine is going to be to go in to the Lucee admin, configure all of those settings and then, from your web root run “cfconfig export to=lucee-configured.json”.

Then you can find the changed keys in that file and add them to your config.

I’m using Lucee server, Will “dotNotationUpperCase” : false works in Lucee.

Yes, that setting is supported in both Adobe and Lucee. But you also could have just tested that out on your own in the time it took you to ask the question :slight_smile:

Thanks Jon and Brad.