No physical template file was found for template Index
Hi all,
Here is a weird one:
When I have a content node called "User" any Child nodes cause the error:
"No physical template file was found for template Index"
When I change the name of the node "User" to something else (for example "TTUser" - with no other changes) then the child node works fine. I tried this a few times to check that is what is was actually happing.
Seems strange. If anyone can explain this it would be appreciated
What is the exact version of Umbraco 7 that you're running? I just installed a fresh version of 7.3.6 based on the Fanoe starter kit and I created a node called "User" and added some childs. I can access the childs just fine and I don't see the above message. So wondering if it might be a bug in an older version perhaps?
I am using version 7.3.5 and am using UmbracoIdentity and am only aware of this custom routing:
//Create our custom MVC route for our member profile pages
RouteTable.Routes.MapRoute(
"memberProfileRoute",
"user/{profileURLtoCheck}",
new
{
controller = "ViewProfile",
action = "Index"
});
_ran = true;
I think this probably explains the problem since it includes "user/{profileURLtoCheck}" do you agree - anyway thanks for guiding me to what I assume to the solution :-)
No physical template file was found for template Index
Hi all,
Here is a weird one:
When I have a content node called "User" any Child nodes cause the error:
When I change the name of the node "User" to something else (for example "TTUser" - with no other changes) then the child node works fine. I tried this a few times to check that is what is was actually happing.
Seems strange. If anyone can explain this it would be appreciated
Thanks
Terry Clancy
ClanceZ
Hi Terry
What is the exact version of Umbraco 7 that you're running? I just installed a fresh version of 7.3.6 based on the Fanoe starter kit and I created a node called "User" and added some childs. I can access the childs just fine and I don't see the above message. So wondering if it might be a bug in an older version perhaps?
/Jan
...Or perhaps you have some code somewhere that is causing the issue? Any custom routing that could interfere perhaps?
/Jan
Thanks Jan,
I am using version 7.3.5 and am using UmbracoIdentity and am only aware of this custom routing:
I think this probably explains the problem since it includes "user/{profileURLtoCheck}" do you agree - anyway thanks for guiding me to what I assume to the solution :-)
Terry Clancy
ClanceZ
Hi Terry
Happy I could help - Seems very possible that it's the reason for the issue indeed.
/Jan
is working on a reply...