我已经安装了 sitecore 连接器。但是当我尝试同步时,我收到“找不到服务器,500 错误”。sitecore 管理面板在浏览器中运行良好。当尝试使用 TDS 项目属性中的测试按钮时,我会收到以下错误:
我已经检查了 TDS 项目属性中的 Access Guid 和 inetpub 中已部署网站中 _DEV 文件夹的 web.config,它们是相同的。
任何想法可能是什么问题?
我遇到了同样的问题,我通过删除网站根目录上的 _DEV 文件夹解决了这个问题,它允许 TDS 再次安装连接器。
在 Build 选项卡中,请确保您有正确的设置 1. Sitecore Web URL - Sitecore URL ( http://example.com/sitecore )
就我而言,Sitecore 部署文件夹指向不正确的文件夹。更正后,它就像魅力一样。
对于所有错误,此解决方案很有帮助。目前,我们在 web.config 中有以下代码:
<httpErrors errorMode="Custom" existingResponse="Replace" defaultResponseMode="File">
<remove statusCode="404" subStatusCode="-1"/>
<error statusCode="404" subStatusCode="-1" path="/www/home/page-not-found" responseMode="ExecuteURL"/>
<remove statusCode="500" subStatusCode="-1"/>
<error statusCode="500" subStatusCode="-1" path="/error-500.html" responseMode="ExecuteURL"/>
</httpErrors>
我们应该用这个替换它:
<httpErrors errorMode="Custom" defaultResponseMode="File">
<remove statusCode="404" subStatusCode="-1"/>
<error statusCode="404" subStatusCode="-1" path="/www/home/page-not-found" responseMode="ExecuteURL"/>
<remove statusCode="500" subStatusCode="-1"/>
<error statusCode="500" subStatusCode="-1" path="/error-500.html" responseMode="ExecuteURL"/>
</httpErrors>
我们从上面的代码中删除了这个: existingResponse="Replace"