Skip to main content
Known Participant
November 22, 2012
Answered

CF 9 IIS 7.5 Internal Server Error 500.0

  • November 22, 2012
  • 1 reply
  • 2551 views

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

    This topic has been closed for replies.
    Correct answer carl type3

    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.

    1 reply

    carl type3Correct answer
    Legend
    November 23, 2012

    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.

    Known Participant
    November 23, 2012

    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

    Legend
    November 23, 2012

    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.