Table of Contents webpart can only display a max of 50 sites
By peter.stilgoe
Open web.config and look for the following lines:
add name=”GlobalNavSiteMapProvider” description=”CMS provider for Global navigation” type=”Microsoft.SharePoint.Publishing.Navigation.PortalSiteMapProvider, Microsoft.SharePoint.Publishing, Version=13.0.0.0, Culture=neutral, PublicKeyToken=94de0004b6e3fcc5″ NavigationType=”Global” EncodeOutput=”true”
add name=”CombinedNavSiteMapProvider” description=”CMS provider for Combined navigation” type=”Microsoft.SharePoint.Publishing.Navigation.PortalSiteMapProvider, Microsoft.SharePoint.Publishing, Version=13.0.0.0, Culture=neutral, PublicKeyToken=94de0004b6e3fcc5″ NavigationType=”Combined” EncodeOutput=”true” /
add name=”CurrentNavSiteMapProvider” description=”CMS provider for Current navigation” type=”Microsoft.SharePoint.Publishing.Navigation.PortalSiteMapProvider, Microsoft.SharePoint.Publishing, Version=13.0.0.0, Culture=neutral, PublicKeyToken=94de0004b6e3fcc5″ NavigationType=”Current” EncodeOutput=”true” /
add name=”CurrentNavSiteMapProviderNoEncode” description=”CMS provider for Current navigation, no encoding of output” type=”Microsoft.SharePoint.Publishing.Navigation.PortalSiteMapProvider, Microsoft.SharePoint.Publishing, Version=13.0.0.0, Culture=neutral, PublicKeyToken=94de0004b6e3fcc5″ NavigationType=”Current” EncodeOutput=”false” /
Add the following attribute to each provider definition: DynamicChildLimit=”
e.g.
add name=”GlobalNavSiteMapProvider” description=”CMS provider for Global navigation” type=”Microsoft.SharePoint.Publishing.Navigation.PortalSiteMapProvider, Microsoft.SharePoint.Publishing, Version=13.0.0.0, Culture=neutral, PublicKeyToken=94de0004b6e3fcc5″ NavigationType=”Global” EncodeOutput=”true” DynamicChildLimit=”75″ /
More From pstilgoe



September 22nd, 2008

Thank you very much, this was a life saver! I’ve just spent way to much time with the bloody SPD web service connection and trying to configure the absolute URL. Once again, thank you!
[Reply]