配置错误Host ‘COMPUTERNAME’ is not allowed to connect to this MySQL server解决办法
配置错误
说明: 在处理向该请求提供服务所需的配置文件时出错。请检查下面的特定错误详细信息并适当地修改配置文件。
分析器错误消息: Host ‘CHENGCONG-PC’ is not allowed to connect to this MySQL server
行 283: <siteMap> 行 284: <providers> 行 285: <add name="MySqlSiteMapProvider" type="MySql.Web.SiteMap.MySqlSiteMapProvider, MySql.Web, Version=6.9.9.0, Culture=neutral, PublicKeyToken=c5687fc88969c44d" connectionStringName="LocalMySqlServer" applicationName="/" /> 行 286: </providers> 行 287: </siteMap>
解决办法:在打开站点的web.config文件,在system.web节点加入
<siteMap> <providers> <remove name="MySqlSiteMapProvider"/> </providers> </siteMap>