I just applied one account from asphostcentral then upload published asp.net mvc application on to that server, but i got an 500 errors, my application is KIGG. I just want to know how can I figure out how can I view errors in detail?
2 Answers
Don't fully understand your question but...
if you have access to the server and have Visual Studio installed you could debug the code using Attach To Process (Tools menu of Visual Studio) and attach to the IIS app pool process, w3wp.exe
You could also turn on debug info in the web.config file
<SafeMode ... CallStack="false" ...> and change it to CallStack="true"
Set <customErrors mode="On" /> to mode="Off"
Set <compilation batch="false" debug="false"> to <compilation batch="true" debug="true">
1 Comment
CodeYun
thanks Simon, I can't attach to w3wp.exe because my website is in a shared hosting machine like: www.aaa.com, i will try your second solution.