Paul,

Take a look at the 9.0.2 release notes: 
http://helpx.adobe.com/coldfusion/release-note/coldfusion-9-0-update-2.html

The "Maximum size of post data" is for the size (in MB) of posting data 
and/or files in a post request, not the number of parameters allowed in 
a post request.  You'll need to edit the neo-runtime.xml file per the 
release notes to increase the number of parameters allowed.

HTH,
Carl

On 6/29/2012 1:55 PM, Paul Alkema wrote:
> Hi All,
> I'm running into an issue, where when I create over 100 different form 
> elements with different content I get a 500 error. I'd like to increase this 
> number up from 100 however I can't find an area to do this.
>
> My original thought was that it was in the ColdFusion Administrator --> 
> settings --> "Maximum size of post data" however, when I upped this, it had 
> no effect on the number of post variables. I think this setting seems to be 
> the post variable size, as like for file uploads ect...
>
> I'm running on ColdFusion 9.0.2 and when I run the code below and hit submit 
> I receive an error. Anyone have any ideas?
>
> <form action="" method="post">
>       <cfoutput>
>          <cfloop from="1" to="100" index="i">
>              <input name="txtBox#i#" type="hidden" value="txtValue#i#" />
>          </cfloop>
>      </cfoutput>
>      <input type="submit" name="txtButton" />
> </form>
>
>
> 

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Order the Adobe Coldfusion Anthology now!
http://www.amazon.com/Adobe-Coldfusion-Anthology/dp/1430272155/?tag=houseoffusion
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:351763
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/groups/cf-talk/unsubscribe.cfm

Reply via email to