Error installing plugins in 3.90

This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.
6 years ago
Installing some plugins the following error arised:


The controller for path '/Admin/Plugin/ConfigureMiscPlugin' was not found or does not implement IController.
  Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

Exception Details: System.Web.HttpException: The controller for path '/Admin/Plugin/ConfigureMiscPlugin' was not found or does not implement IController.

Source Error:



Line 22:         @if (!String.IsNullOrEmpty(Model.ConfigurationActionName))
Line 23:         {
Line 24:             @Html.Action(Model.ConfigurationActionName, Model.ConfigurationControllerName, Model.ConfigurationRouteValues);
Line 25:         }
Line 26:         else
  

Source File:  d:\Web\nopglamcos390\Administration\Views\Plugin\ConfigureMiscPlugin.cshtml    Line:  24

CAn anybody help me please?
6 years ago
infinito62 wrote:
Installing some plugins the following error arised:


The controller for path '/Admin/Plugin/ConfigureMiscPlugin' was not found or does not implement IController.
  Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.

Exception Details: System.Web.HttpException: The controller for path '/Admin/Plugin/ConfigureMiscPlugin' was not found or does not implement IController.

Source Error:



Line 22:         @if (!String.IsNullOrEmpty(Model.ConfigurationActionName))
Line 23:         {
Line 24:             @Html.Action(Model.ConfigurationActionName, Model.ConfigurationControllerName, Model.ConfigurationRouteValues);
Line 25:         }
Line 26:         else
  

Source File:  d:\Web\nopglamcos390\Administration\Views\Plugin\ConfigureMiscPlugin.cshtml    Line:  24

CAn anybody help me please?


It is route cache issue new route don't add in the routing table

You  in local you can rebuild the whole solution and run again.

For IIS: you can edit Global.asax and save it it will force to reroute

otherwise you can upload new build dll for nop.core.dll and nop.web.dll it will force rerouting
6 years ago
You controller should inherit from BaseController also you should provide the Localized route in your RouteProvider file
6 years ago
Yes, it works.
website is as slow as a turtle, I wonder why, but at least it works.
Thanks
This topic was automatically closed 365 days after the last reply. New replies are no longer allowed.