Post Sitecore TDS 安装错误 "DeployedItems.xml"
Post installation error "DeployedItems.xml" with Sitecore TDS
我创建了一个项目的 TDS 包并想将它安装在一个新的 Sitecore 实例上。安装结束时,我收到此消息:
这个错误是什么意思?这是什么"DeployedItems.xml"?
根据我的记忆,DeployedItems.xml 是 TDS 在 _DEV 文件夹中创建的一个文件,用于跟踪安装了哪些项目。您是 运行 Sitecore 8 Update 3 吗?您是否在包中包含文件?
如果是这样,以下 link 可能会为您提供有关该问题的详细信息:
http://www.hhogdev.com/blog/2015/may/sitecore-update-installation-wizard-error-in-sitecore-8-update-3.aspx
来自post:
To resolve the issue, you need to add a few lines to the Sitecore web.config.
Locate the <configSections>
element at the top of the web.config
Add the section "<section name="sitecorediff" type="Sitecore.Update.Configuration.ConfigReader, Sitecore.Update"/>
"
Right after the close of the element add "<sitecorediff/>
" element
TDS 5.1.0.9 包含此问题的修复程序,因此如果您使用的是低于该版本的版本,则可能需要更新您的 TDS 版本。
我创建了一个项目的 TDS 包并想将它安装在一个新的 Sitecore 实例上。安装结束时,我收到此消息:
这个错误是什么意思?这是什么"DeployedItems.xml"?
根据我的记忆,DeployedItems.xml 是 TDS 在 _DEV 文件夹中创建的一个文件,用于跟踪安装了哪些项目。您是 运行 Sitecore 8 Update 3 吗?您是否在包中包含文件?
如果是这样,以下 link 可能会为您提供有关该问题的详细信息: http://www.hhogdev.com/blog/2015/may/sitecore-update-installation-wizard-error-in-sitecore-8-update-3.aspx
来自post:
To resolve the issue, you need to add a few lines to the Sitecore web.config.
Locate the
<configSections>
element at the top of the web.configAdd the section "
<section name="sitecorediff" type="Sitecore.Update.Configuration.ConfigReader, Sitecore.Update"/>
"Right after the close of the element add "
<sitecorediff/>
" element
TDS 5.1.0.9 包含此问题的修复程序,因此如果您使用的是低于该版本的版本,则可能需要更新您的 TDS 版本。