Copy link to clipboard
Copied
I would like to automate setup of my cf install and wondered how one can set maximum number of post params via the API?
This worked just fine!
<cfscript>
adminObj = createObject("component","cfide.adminapi.administrator");
adminObj.login("xxx");
runtime = createObject("component", "CFIDE.adminapi.runtime");
runtime.setRuntimeProperty("PostParametersLimit","1000");
</cfscript>
Copy link to clipboard
Copied
Also "Enable Request Debugging Output"
Copy link to clipboard
Copied
Copy link to clipboard
Copied
This worked just fine!
<cfscript>
adminObj = createObject("component","cfide.adminapi.administrator");
adminObj.login("xxx");
runtime = createObject("component", "CFIDE.adminapi.runtime");
runtime.setRuntimeProperty("PostParametersLimit","1000");
</cfscript>
Copy link to clipboard
Copied
Under debugging.cfc, you can find this