Quantcast
Viewing all articles
Browse latest Browse all 21760

Re: CF9.02 multi-instance 500 Error processing form with over 50 fields included

Hello,

 

The Post Parameter Limits the number of parameters in a post request. The default value is 100. If a post request contains more parameters as specified, the server doesn't process the request and throws an exception. This process protects against DoS attack using Hash Collision. This setting is different from Post Size Limit (ColdFusion Administrator > Settings > Maximum size of post data). This setting isn't exposed in the ColdFusion Administrator console. Customers who want to change postParameterLimit, go to {ColdFusion-Home}/lib for Server Installation or {ColdFusion-Home}/WEB-INF/cfusion/lib for Multiserver or J2EE installation. Please try the following:-

 

1. Open file neo-runtime.xml

2. Locate "<var name='postSizeLimit'><number>100.0</number></var>"

3. Add "<var name='postParametersLimit'><number>100.0</number></var>" below the above code. You can change 100 with the desired number.

 

 

Regards,

Anit Kumar


Viewing all articles
Browse latest Browse all 21760

Trending Articles