ASP.net Error <add name="MySqlSiteMapProvider" type="MySql.Web.SiteMap.MySqlSiteMapProvider, MySql.Web, Version=

<add name="MySqlSiteMapProvider" type="MySql.Web.SiteMap.MySqlSiteMapProvider, MySql.Web, Version=
Is returned when publishing certain asp.net applications to the Windows Web Servers.

To resolve the error listed above follow these steps
Download a copy of your web.config file and open the file using your preferred editor
Locate the section <siteMap> which should be located below <system.web>
Add the following line directly below <providers> :
<remove name="MySqlSiteMapProvider" />

To confirm, your web.config would look similar to this
<system.web>
    <siteMap>
          <remove name="MySqlSiteMapProvider" />



Save the changes to the web.config and upload the file to your wwwroot directory



If your web.config does not include a sitemap section then add the following section to your web.config below the <system.web> section


<siteMap>
<providers>
<remove name="MySqlSiteMapProvider" />
</providers>
</siteMap>

  • MySqlSiteMapProvider, MySql
  • 1 Users Found This Useful
Was this answer helpful?

Related Articles

How to reset or change your email password from SolidCP

Follow the steps below to change an email password that is hosted on our Windows SSD Hosting...

Email Password Complexity Requirements

For your security and the security of other users hosted on our Windows SSD Web Hosting...

How to Set Website Permissions + Write Permissions

How to set website write permissions using the Windows Hosting Control Panel. Log into the...

URL redirect rule to redirect all website traffic from http to https

This knowledgebase article applies to Windows Hosting only, below are the Linux instructions...

How to connect to your MSSQL databases from your website + using SQL Server Management Studio

How to remotely connect to a Microsoft SQL Database Preamble : In order to connect to a...