When submitting a large number of form fields, ColdFusion 10 crashes even if ColdFusion 9 does not.
相关问题
- How to specify argument attributes in CFscript? (C
- Coldfusion date conversion: “2013-11-15T06:11:57.8
- ColdFusion Java Method Not Found Exception
- Coldfusion - How to parse and segment out data fro
- ColdFusion XLS “Export” and Character Encoding
相关文章
- How do I prevent SQL injection with ColdFusion
- How to scope closure's variables in CF10?
- What Notable Differences are there between Railo,
- Restarting ColdFusion mail queue
- How to pass additional data to restful API Basic a
- ColdFusion: Application Options Based on Role?
- Best algorithm to Encrypting / Decrypting a string
- Creating a Google reCAPTCHA 'secure token'
Earlier versions of ColdFusion 9 did not restrict the number of form fields that could be submitted. ColdFusion 10, be default limits the number of fields to 100.
If you go to Server Settings -> Settings then the to Request Size Limits section. There is a setting called
Maximum number of POST request parameters
. It needs to be adjusted upwardAs Leigh mentioned (I can personally attest to this), this limit was actually added in 9.0.2. The problem was that there was no way to change it in the admin UI, had to do it in XML.
In ColdFusion – 9: First install the security fix( http://helpx.adobe.com/coldfusion/kb/coldfusion-security-hotfix.html ) for ColdFusion - 9.
<var name='postSizeLimit'><number>100.0</number></var>
<var name='postParametersLimit'><number>100.0</number></var>
You can change the limit as per your need.