首页 > 代码库 > sharepoint 部分site下的库不能显示正常名称,显示为“error”
sharepoint 部分site下的库不能显示正常名称,显示为“error”
错误现象:
部分site下的库不能显示正常名称,显示为“error”,Navigation的部分也會顯示Feature ‘525dc00c-0745-47c0-8073-221c2ec22f0f‘ for list template ‘101‘ is not installed in this farm. The operation could not be completed.
从故障现象分析,是缺少某个模板功能导致的,根据错误提示发现,所有错误site提示错误的GUID和对应的LIST归纳为以下几个:
GUID
对应list名称
60d1e34f-0eb3-4e56-9049-85daabfec68c
"Issues"
448e1394-5e76-44b4-9e1c-169b7a389a1b
"Risks"
525dc00c-0745-47c0-8073-221c2ec22f0f
“Project Documents"
d8d8df90-7b1f-49c1-b170-6f46a94f8c3c
"Deliverables"
而以上几个list所对应的网站模板为Project Tracking Workspace,进入网站点击所有和这几个list相关链接时,均报错,检查网站,网站中无此模板
进入12\bin目录,检查该模板的安装情况:
使用命令:stsaddm –o enumsolution检查外部模板安装情况,若模板没有安装,则下载
模板下载链接为http://www.microsoft.com/download/en/details.aspx?id=5973
将下载的文件解压到C盘根目录
A安装核心模板ApplicationTemplateCore.wsp(若在上步检查中发现1已安装,则直接进行b步骤),执行以下三条命令:
· stsadm -o addsolution –filename C:\ServerAdminTemplates\ApplicationTemplateCore.wsp
·
假设模板文件解压在C:\ServerAdminTemplates\目录下
stsadm -o deploysolution –name ApplicationTemplateCore.wsp –allowgacdeployment -immediate
· stsadm -o copyappbincontent
b安装 ProjectTrackingWorkspace.wsp
· stsadm -o addsolution –filename C:\ServerAdminTemplates\ProjectTrackingWorkspace.wsp
· stsadm -o deploysolution –name ProjectTrackingWorkspace.wsp –allowgacdeployment –immediate
模板安装成功
再进入网站可以看到以前出现“error”的链接都已恢复。
sharepoint 部分site下的库不能显示正常名称,显示为“error”