Hello,
In my DNN 5.6.2 site, when I navigate to the SiteMap.aspx page I receive a 404 error. When I view the Search Engine SiteMap configuration settings, in the table of providers this is displayed:
In my searching and experimenting, I wondered if I was supposed to have a <sitemap> entry within the <dotnetnuke> tag of my web.config, which I did not have. I tried adding
<sitemap defaultProvider="coreSitemapProvider">
<providers>
<clear />
<add name="coreSitemapProvider" type="DotNetNuke.SitemapProviders.CoreSitemapProvider, DotNetNuke.SitemapProviders.CoreSitemapProvider" providerPath="~\Providers\MembershipProviders\Sitemap\CoreSitemapProvider\" />
</providers>
</sitemap>
(stolen from another forum post on the topic) but that gave me a config error:
The configuration section 'sitemap' cannot be read because it is missing a section declaration
I suspect my SiteMap.aspx is missing because the coreSitemapProvider is missing, but how do I enable it (in version 5.6.2)?