Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
Hi, I'm getting the log error:
System.Exception: No physical template file was found for template GetModelsOutOfDateStatus
looking at the js error I get:
Failed to load resource: the server http://localhost:3503/umbraco/backoffice/abrioffice/ModelsBuilderBackOffice/GetModelsOutOfDateStatus responded with a status of 500 (Internal Server Error)
So Umbraco is routing to my plugin area for the modelsbuilder area.
Here is my route declaration:
RouteTable.Routes.MapRoute("abrioffice", _globalSettings.GetUmbracoMvcArea() + "/backoffice/abrioffice/{controller}/{action}/{id}", new { controller = "ABRIOffice", action = "Index", id = UrlParameter.Optional });
Any help appreciated.
Ok so I used a constraint to fix this, limiting the route to only be used by my controller. This means now ModelsBuilder doesn't try to use it.
RouteTable.Routes.MapRoute("ABRIOffice", _globalSettings.GetUmbracoMvcArea() + "/backoffice/abrioffice/{controller}/{action}/{id}", new { controller = "abri", action = "Index", id = UrlParameter.Optional }, constraints: new { controller="ABRIOffice" });
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
Backoffice Settings (member types) using plugin route instead of default Umbraco route for a view
Hi, I'm getting the log error:
looking at the js error I get:
So Umbraco is routing to my plugin area for the modelsbuilder area.
Here is my route declaration:
Any help appreciated.
Ok so I used a constraint to fix this, limiting the route to only be used by my controller. This means now ModelsBuilder doesn't try to use it.
is working on a reply...