Problem missed navbar nodes of the onet.xml in custom site template.
- Solution add NavBar nodes to onet.xml:<navbars>
<navbar name="SharePoint Top Navbar" id="1002">
</navbar>
</navbars> - Wrote an SQL query to update the broken sites. T-Sql to execute in contentdbINSERT INTO [NavNodes] ([SiteId] ,[WebId] ,[Eid] ,[EidParent] ,[NumChildren] ,[RankChild] ,[ElementType] ,[Url] ,[DocId] ,[Name] ,[DateLastModified] ,[NodeMetainfo] , NonNavPage] ,[NavSequence] ,[ChildOfSequence])
SELECT DISTINCT SiteId, WebId ,1002 ,0 ,0 ,1 ,1 ,'' ,NULL ,'SharePoint Top Navbar' ,getdate() ,NULL ,0 ,1 ,0
FROM NavNodes
WHERE WebId NOT IN (
SELECT WebId
FROM NavNodes
WHERE Eid = 1002)
- The query adds the SharePoint Top Navbar node to the NavNodes tables where a web does not already have one.
1 comment:
God bless you a million times!!!! saved me a lot of hassle
Post a Comment