|
Mailing Lists
|
Home /
Groups /
ColdFusion Talk (CF-Talk)
Maximum Post Variables
Hi All,Paul Alkema 06/28/12 04:57 P There are several blogs that talk about this. It is a 'setting'Wil Genovese 06/28/12 05:01 P Hi Wil,Paul Alkema 06/28/12 05:37 P Paul,Carl Von Stetten 06/28/12 05:13 P Hi All,Paul Alkema 06/28/12 04:59 P 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> There are several blogs that talk about this. It is a 'setting' http://www.cutterscrossing.com/index.cfm/2012/3/27/ColdFusion-Security-Hotfix-and-Big-Forms Here's one. Wil Genovese Sr. Web Application Developer/ Systems Administrator CF Webtools www.cfwebtools.com wilgeno@trunkful.com www.trunkful.com On Jun 29, 2012, at 3:55 PM, Paul Alkema wrote: ----- Excess quoted text cut - see Original Post for more ----- Hi Wil, This is exactly what I was looking for. Thanks!! Paul ----- Excess quoted text cut - see Original Post for more ----- 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: ----- Excess quoted text cut - see Original Post for more ----- 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>
|
May 20, 2013
|
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||