Have you checked if the files are actually there? If not then you could download them online or copy/overwrite the umbraco folder contents from the packages folder in your project.
If the files are already there then you could try to update the client dependency version in /config/clientdependency.config. That triggers the server to update the file cache.
Hello,
I fixed the issues :D
The problem was that there is is a url rewrite and MapRoute that redirect the call of Web Services to _mvc/Default in UsiteModelBuilder project so the call get 404.
So I add MapRoute for BackOfficeApi url.
And the result is from
public class RegisterMVCRoutes
{
public static void Setup()
{
RouteTable.Routes.MapRoute(
"mvc", // Route name
"_mvc/{culture}/{controller}/{action}/{id}", // URL with parameters
new { controller = "Home", action = "Index", culture = "Default", id = UrlParameter.Optional } // Parameter defaults
);
}
}
To
public class RegisterMVCRoutes
{
public static void Setup()
{
RouteTable.Routes.MapHttpRoute(
name: "BackOfficeApi",
routeTemplate: "umbraco/BackOffice/Api/{controller}/{action}/{id}",
defaults: new { id = RouteParameter.Optional }
);
RouteTable.Routes.MapRoute(
"mvc", // Route name
"_mvc/{culture}/{controller}/{action}/{id}", // URL with parameters
new { controller = "Home", action = "Index", culture = "Default", id = UrlParameter.Optional } // Parameter defaults
);
}
}
No physical template file was found for template XXXX
Hi, I'm upgrading Umbraco to 7.6.0 after install in BO when click Developer tab I get those errors "No physical template file was found for template"
In Network inspector I get this
Any Ideas ?
Have you checked if the files are actually there? If not then you could download them online or copy/overwrite the umbraco folder contents from the packages folder in your project.
If the files are already there then you could try to update the client dependency version in /config/clientdependency.config. That triggers the server to update the file cache.
Hi Bernard,
Yes I already copied umbraco & umbraco_client folder from source but same error. Can you please give me the path where should those files exist ?
Hi Saidi,
I see the urls are pointing to /_mvc/Default
While they should be pointing to umbraco/BackOffice/Api/
Did you change something in your configuration ?
Dave
Hi Dave
How can I change this ?
Oussama
Hello, I fixed the issues :D The problem was that there is is a url rewrite and MapRoute that redirect the call of Web Services to _mvc/Default in UsiteModelBuilder project so the call get 404. So I add MapRoute for BackOfficeApi url.
And the result is from
To
Thank you all
Oussama
is working on a reply...