Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

Error on forms with 100+ inputs after installing ColdFusion Security Hotfix APSB12-06

Participant ,
Mar 19, 2012 Mar 19, 2012

I recently installed ColdFusion Security Hotfix APSB12-06 (http://helpx.adobe.com/coldfusion/kb/coldfusion-security-hotfix.html).

After the installation, forms that have more than 100 inputs produce a 500 - Internal server error.

1.2K
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Participant , Mar 19, 2012 Mar 19, 2012

I just noticed this note in the HotFix instructions:

    • 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. Open file neo-runtime.xml, after line
1

"<var name='postSizeLimit'><number>100.0</number></var>"

          add the below line and you can change 100 with desired number.

1

"<var name='postParametersLimit'><number>100.0</number></var>"

I'll try that

Translate
Advocate ,
Mar 19, 2012 Mar 19, 2012

To change postParameterLimit, go to {ColdFusion-Home}/lib for Server installation or {ColdFusion-Home}/WEB-INF/cfusion/lib for Multiserver or J2EE installation and Open neo-runtime.xml

Add this line with the number of form fields you wish to allow.


<var name=’postSizeLimit’><number>100.0</number></var>


         

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Participant ,
Mar 19, 2012 Mar 19, 2012

Thanks for your reply. I was unaware of this setting. Presumably it was always present, and the error is therefore unrelated to the recent security hotfix?

The value is currently set to 500.0 on the server in question, so I'm not sure why it is throwing an error at 101.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Participant ,
Mar 19, 2012 Mar 19, 2012

I just noticed this note in the HotFix instructions:

    • 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. Open file neo-runtime.xml, after line
1

"<var name='postSizeLimit'><number>100.0</number></var>"

          add the below line and you can change 100 with desired number.

1

"<var name='postParametersLimit'><number>100.0</number></var>"

I'll try that

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Advocate ,
Mar 19, 2012 Mar 19, 2012
LATEST

That's what I meant to copy and something got hosed up when I reformatted after pasting.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Resources