forked from smartstore/SmartStoreNET
-
Notifications
You must be signed in to change notification settings - Fork 0
Internal Error
Michael Herzog edited this page Aug 25, 2014
·
1 revision
This page gets displayed if any error has occured so the visitor of the shop won't see the original error message that was rendered by ASP.NET. Unfortunately it tells us nothing about the real error that has happend. So if you have to research what causes this error, it can be important to turn this custom error page off and display the original error instead.
Therefore we have to edit the web.config. Search for the following node:
<customErrors defaultRedirect="errorpage.htm" mode="RemoteOnly">
<error statusCode="404" redirect="~/404" />
</customErrors> and alter it as follows:
<customErrors mode="Off" />- The SmartStore.Net Web API in detail
- HMAC authentication
- Code examples
- Working with the product entity
- More examples
- Why do I get "We're sorry, an internal error has occurred"
- How to add code to the head section of my page
- How to format an Excel import file?
- How to add my own links to shop menus?