Troubleshooting nopCommerce

If you are seeing the generic error page for nopCommerce and are unsure how to debug the issue please see below to find the true error.

When the generic error page is shown you need to know what the true error is before resolving it. You have two options.

1. Open the administration by navigating to YourStoreName.com/admin and then go to System > Log.

The Log contains all the errors and warnings in your store. Most of the time you should be looking for the most recent error. The error details contain all the information you need to investigate and fix the problem.

2. If you can't access the administration you have to turn off the custom errors, so that you are not navigated to the Error Page. To do so, modify your Web.config file by replacing RemoteOnly with Off:

<customErrors defaultRedirect="errorpage.htm" mode="RemoteOnly">

change to:

<customErrors defaultRedirect="errorpage.htm" mode="Off">

The true error will now show when you view the website.

Feel free to contact support if you have any issues with this.

There are also a lot of good guides here to help nopCommerce administrators handle various issues:

https://docs.nopcommerce.com/user-guide/installing/faq.html

 

  • nopcommerce, nop
  • 2 Users Found This Useful
Was this answer helpful?

Related Articles

Upgrading nopCommerce

Its very important for clients to keep their website applications up to date with the latest...

Upgrading Umbraco

Its very important for clients to keep their website applications up to date with the latest...

How to configure your SMTP mail server in nopCommerce

How to configure your SMTP mail server in nopCommerce: Login to your nopCommerce admin area....

Umbraco Error - The View found at '~/Views/Home.cshtml' was not created

Sometimes when you move Umbraco to a new server environment you will get an error - "The View...

Troubleshooting DNN (Dotnetnuke)

The DNN team have full documentation on how to troubleshoot and view detailed error logs in your...