Copy link to clipboard
Copied
I was working in ColdF 9 dvlp, uninstall and install ColdF 10 dvlp now Error 500 error 0x800700c1. Isapi set to 64 bits Pool App 32 bits=true etc. What I missing? Help be apreciated, thanks.
Copy link to clipboard
Copied
Are you getting on every page or only at Submit button.
Copy link to clipboard
Copied
what submit button is that?
Copy link to clipboard
Copied
I was getting the same error while submit the form then I change settings in neo-runtime.xml file.
By default it was 100, I replaced with 500.
<var name="postParametersLimit"><number>500.0</number></var>
Copy link to clipboard
Copied
Agree 500 could be CF10 implementing Post Parameter Limit. This limits the number of parameters in a post request. The default value is 100. If a post request contains more parameters as specified, server will not process the request and throws an exception or 500 error.
Edit file after making a copy of (so you got a backup):
ColdFusion10\cfusion\lib\neo-runtime.xml
This line:
<var name='postParametersLimit'><number>100.0</number></var>
What value 500? Depends do your own testing.
Restart CF10 application service.
Further reading here ColdFusion Security Hotfix APSB12-06:
http://helpx.adobe.com/coldfusion/kb/coldfusion-security-hotfix.html
Regards, Carl.
Copy link to clipboard
Copied
Hi all,
The postParametersLimit fix is correct. Just a note: CF10 Final simplifies this. In CF10 this setting can be changed on the Settings page of CF Admin via the "Maximum number of POST request parameters" setting.
Thanks,
-Aaron
Copy link to clipboard
Copied
CF10admin > Server Settings > Settings - did not see that Aaron till you mentioned:
Thanks, Carl.