[提问]
请大家帮我看看,这是什么意思,客服给我回的邮件
|
|
我的问题就是。我的空间中划分了一个小空间,然后上传了一个asp的商城,在本机中用iis可以看。但是上传后出现了500 - Internal server error.
There is a problem with the resource you are looking for, and it cannot be displayed.这个提示。
然后这是客服给我的回答!
Dear rose yang,
Thank you for contacting Online Support.
I would be happy to assist you with troubleshooting this issue. A 500 Internal Server Error is a generic error message, I would recommend enabling detailed error logs to assist you in determining the issue.
By default, our Windows hosting servers display a generic error when any .NET application generates an exception. We display a generic error because the detailed error messages allow a malicious user to obtain sensitive information.
To troubleshoot the error, you can modify your web.config file and specify that a custom error message displays. A custom error message helps you to locate the specific code that is causing the issue.
CAUTION: The code samples we provide below do not constitute a complete web.config file. Do not replace your existing web.config file with the code we provide. Before changing your web.config file, we recommend creating a backup.
Displaying Custom Error Messages / Enabling Detailed Errors on IIS 7
Use the sample code below to display custom error messages on IIS 7:
<configuration>
<system.webServer>
<httpErrors errorMode="Detailed" />
<asp scriptErrorSentToBrowser="true"/>
</system.webServer>
<system.web>
<customErrors mode="Off"/>
<compilation debug="true"/>
</system.web>
</configuration>
Please let us know if we can assist you in any other way.
Sincerely, |
|
|
|
|
|
|
|
|
|
|
add.c
发表于 2010-5-21 12:11:10
|
显示全部楼层
|
|
|
|
|
|
|
|
|
|
rosehui
发表于 2010-5-21 13:30:48
|
显示全部楼层
谢谢,我先看看。
现在提示是:
Microsoft VBScript runtime error '800a0009'
Subscript out of range: '[number: 9]'
/ooxx/Inc/ClsCommon_1.asp, line 484 |
|
|
|
|
|
|
|
|