I commented out the sorting and it seems that i have the same issue. Possibly not related to any of this.
The log file shows this:
Error adding to SiteMapProvider: System.InvalidOperationException: Multiple nodes with the same URL '/' were found. XmlSiteMapProvider requires that sitemap nodes have unique URLs.
at System.Web.StaticSiteMapProvider.AddNode(SiteMapNode node, SiteMapNode parentNode)
at umbraco.presentation.nodeFactory.UmbracoSiteMapProvider.loadNodes(String parentId, SiteMapNode parentNode)
Error handling action No Document exists... - content node delete problem
When I delete a node I get this error message:
Error handling action
No Document exists with Version '00000000-0000-0000-0000-000000000000'
The node is deleted properly. I have been programatically sorting and moving nodes. Is there anything that I might have tripped over?
I do this after save:
And here is my sorting method:
Where do you see the error? In the backend or as an exception?
It's happening on right-click delete.
I commented out the sorting and it seems that i have the same issue. Possibly not related to any of this.
The log file shows this:
Error adding to SiteMapProvider: System.InvalidOperationException: Multiple nodes with the same URL '/' were found. XmlSiteMapProvider requires that sitemap nodes have unique URLs.
at System.Web.StaticSiteMapProvider.AddNode(SiteMapNode node, SiteMapNode parentNode)
at umbraco.presentation.nodeFactory.UmbracoSiteMapProvider.loadNodes(String parentId, SiteMapNode parentNode)
Any thoughts?
Oh recycle bin!
I found the problem!
I'm accessing the document on the after move event. Deleting a document fires the move event and hence the after move event.
is working on a reply...