无法与 sitecore 同步,与 Access Guid 相关的错误

Cannot sync with sitecore, error related to Access Guid

我已经安装了 sitecore 连接器。但是当我尝试同步时,我得到了 "server not found, 500 error"。 sitecore 管理面板在浏览器中运行良好。 尝试使用 TDS 项目属性中的测试按钮时,我会收到以下错误:

我检查了 TDS 项目属性中的 Access Guid 和 inetpub 中已部署网站中 _DEV 文件夹的 web.config,它们是相同的。

知道问题出在哪里吗?

为了使 TDS 在您的本地解决方案中工作,您需要右键单击 TDS 项目,select 属性并确保您在构建选项卡下选中了 "Install Sitecore Connector"。单击 TEST 并让进程 运行.

如果您在同一个解决方案中有多个 TDS 项目,请确保您在每个项目上定义了相同的 GUID。

在“构建”选项卡中,请确保您的设置正确 1. Sitecore 网站 URL - Sitecore URL (http://example.com/sitecore)

  1. Sitecore 部署文件夹 - 网站文件夹的路径 (例如:C:\inetpub\wwwroot\website,其中http://example.com指向)

就我而言,Sitecore 部署文件夹指向的文件夹不正确。改正后效果很好

我遇到了同样的问题,我通过删除网站根目录中的 _DEV 文件夹解决了这个问题,这允许 TDS 再次安装连接器。

对于所有错误,此解决方案都有帮助。目前,我们在 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"