Error on nopCommerce Primary Setup

Asked By 0 points N/A Posted on -
qa-featured

I received an error while working on the primary setup of nopCommerce project. The error “We’re sorry, an internal error occurred that prevents the request to complete. Our supporting staff has been notified with this error and will address this issue shortly. We profusely apologize for the inconvenience and for any damage this may cause. You might want to try the same action at a later time” appeared. I have a .NET 2.0 runtime. What should I do now?

SHARE
Answered By 55 points N/A #126089

Error on nopCommerce Primary Setup

qa-featured

The problem can be for many reasons.

  1. Check to make sure that the database that you are trying to use has not restricted access and that you are using the admin account to access it or to edit it.
  2. Remove the Read only check from the database by going in the MS SQL.
  3. After that open your web config file and do the following changes to it and save it.
  4. Look for a file similar to the one written below
  5. <customErrors mode="RemoteOnly" defaultRedirect="ErrorPage.htm">
  6. Now once you found it, check how many times it is appearing in the pages.
  7. Press CTRL+F and choose Replace from TAB.
  8. Now replace the above text with the one written below
  9. <customErrors mode="Off" defaultRedirect="ErrorPage.htm">
  10. Now save all things and try running the website again. Hope it helps.

Related Questions