Detailed 500 error message, ASP + IIS 7.5

后端 未结 13 1191
北荒
北荒 2020-11-22 03:52

IIS 7.5 , 2008rc2, classic asp, 500 error msg:

The page cannot be displayed because an internal server error has occurred.

I nee

13条回答
  •  感情败类
    2020-11-22 04:09

    In web.config under

    
    

    replace (or add) the line

    
    

    with

    
    

    This is because by default IIS7 intercepts HTTP status codes such as 4xx and 5xx generated by applications further up the pipeline.

    Next, enable "Send Errors to Browser" under the "ASP" section, and under "Error Pages / Edit Feature Settings", select "Detailed errors".

    Also, give Write permissions on the website folder to the IIS_IUSRS builtin group.

提交回复
热议问题