Copy link to clipboard
Copied
Hello everyone,
I have an issue with the follofing configuration:
Win Server 2008 64-bit
ColdFusion 9 64-bit
IIS 7.5
All works fine till I submit page with about 180 fields or more. In this case I get Internal Server Error 500.0, error code 0x00000000. It looks like IIS can't handle so many variables passes and crashes.
What could be the possible solution?
Thanks,
Anton
Anton what is CF9 version, 9.0.2 or 9.0.1 / 9.0.0 with APSB12-15 or above?
If above match then could be postParametersLimit.
Edit neo-runtime.xml change setting from 100 to say 500 (do your own testing to know what number) and restart CF application service to apply.
eg:
<var name='postParametersLimit'><number>500.0</number></var>
HTH, Carl.
Copy link to clipboard
Copied
Anton what is CF9 version, 9.0.2 or 9.0.1 / 9.0.0 with APSB12-15 or above?
If above match then could be postParametersLimit.
Edit neo-runtime.xml change setting from 100 to say 500 (do your own testing to know what number) and restart CF application service to apply.
eg:
<var name='postParametersLimit'><number>500.0</number></var>
HTH, Carl.
Copy link to clipboard
Copied
Hi Carl,
Thank you for your replay. CF version is 9.0.2. Sorry, I am not sure what APSB12-15 means. But anyway, I have changed
"postParametersLimit" variable to the bigger figure and it works now. I thought, post limit is only in CF10, but I should try to check on this matter anyway.
Thanks again for helpful and prompt replay.
Anton
Copy link to clipboard
Copied
Here is the info:
http://helpx.adobe.com/coldfusion/kb/coldfusion-security-hotfix-apsb12-15.html
See notes section 5
CF9.0.2 came out with apsb12-15 applied.
Difference with CF10 is you can use CFadmin to change postparamlimit setting.
Cheers, Carl.