an ASP.NET Open Source CMS & eCommerce platform
Search:
Skip Navigation LinksHome > DotShoppingCart Forums > Support > Installation > How to check system exception?
Last Post 1/25/2008 9:34:41 AM By lukezy. 0 replies.
1/25/2008 9:34:41 AM
lukezy
Posts: 2109
Joined: 6/12/2007
Location:WA, US
How to check system exception?

If you can TS to your server, you could open up event viewer and check the "DotShoppingCart" eventlog.

If you don't have console access to your server, there is another way. Turn off custom errors in your web.config file and you will see the error from the web page.

<customErrors mode="Off" defaultRedirect="GenericErrorPage.htm">
            <error statusCode="403" redirect="NoAccess.htm"/>
            <error statusCode="404" redirect="FileNotFound.htm"/>
</customErrors> 

 

DotShoppingCart Staff