When you upgrade to Microsoft SharePoint Server 2010, some of the new SharePoint Enterprise Search Web Parts are missing from the Web Part gallery for upgraded site collections. The following are the missing Web Parts:

  • Refinement Panel

  • Related Queries

  • People Refinement Panel

  • Dual Chinese Search

This topic describes how you can add these Web Parts to the Web Part galleries of the upgraded site collections.

Note

The Web Part galleries for new site collections will contain these Web Parts; they will be missing only from upgraded site collections.

You can add the missing Web Parts in two ways:

  • Activate the Search Server Web Part feature.

  • Add the Web Parts manually to the Web Part gallery.

To activate the Search Server Web Part feature

  1. To open the Site Settings page for the top-level (root) site of the upgraded site collection, append /_layouts/settings.aspx to the root site's URL, as follows:

    http://RootSiteURL/_layouts/settings.aspx

  2. In the Site Collection Administration section of the Site Settings page, click Site collection features.

  3. For Search Server Web Parts, click Activate.

    Important

    Activating the Search Server Web Part feature adds only the Web Parts that exist in Microsoft SharePoint Server 2010 for Search, so the People Refinement Panel Web Part will not be added to the Web Part gallery. You must add this Web Part manually, by using the steps described in the next procedure.

To add the Web Parts manually to the Web Part gallery

  1. Create a site collection by using the Enterprise Search Center template, as follows:

    1. Open SharePoint 2010 Central Administration.

    2. In the Application Management section, click Create site collections.

    3. In Template Selection, on the Enterprise tab, click Enterprise Search Center.

    4. Specify values for the required fields in the remaining sections, including Title, URL, and the Primary Site Collection AdministratorUser name fields.

    5. Click OK to create the site collection.

  2. To open the Site Settings page for the site you just created, append /_layouts/settings.aspx to the site's URL, as follows:

    http://ServerName/SiteName/_layouts/settings.aspx

  3. In the Galleries section of the Site Settings page, click Web parts.

  4. Select the check box for the DualChinese.dwp entry in the gallery, click Download a Copy, and then click Save to save a copy of the .dwp file to your computer.

  5. Repeat the previous step for the following entries in the Web Part gallery:

    • Refinement.webpart

    • PeopleRefinement.webpart

    • QuerySuggestions.webpart

  6. To open the Site Settings page for the root site of the upgraded site collection, append /_layouts/settings.aspx to the root site's URL, as follows:

    http://RootSiteURL/_layouts/settings.aspx

  7. In the Galleries section of the Site Settings page, click Web parts.

  8. In the Library Tools section, click Documents.

  9. Click Upload Document.

  10. Click Browse, navigate to the location where you saved the downloaded files from steps 4 and 5, select DualChinese.dwp, click Open, and then click OK.

  11. In the Web Part Gallery Properties dialog box, type Search for both the Group and Recommendation Settings sections, and then click Save.

  12. Repeat steps 9 through 11 for the following Web Part files:

    • Refinement.webpart

    • PeopleRefinement.webpart

    • QuerySuggestions.webpart

The missing Search Web Parts are now available to any site within the upgraded site collection.

http://msdn.microsoft.com/en-us/library/ff512796(v=office.14).aspx

How to: Add SharePoint 2010 Search Web Parts to Web Part Gallery for Upgraded Site Collections的更多相关文章

  1. Searching External Data in SharePoint 2010 Using Business Connectivity Services

    from:http://blogs.msdn.com/b/ericwhite/archive/2010/04/28/searching-external-data-in-sharepoint-2010 ...

  2. SharePoint 2010 搜索结果没有显示部分文件

    Why SharePoint 2010 search does not show some results?   SharePoint 2010 search is better than ever ...

  3. Customize the SharePoint 2013 search experience with a Content Enrichment web service

    Did you ever wish you had more control over how your content is indexed and presented as search resu ...

  4. [sharepoint]Office Web Apps for SharePoint 2010

    Office Web Apps for SharePoint 2010 2012年09月20日 ⁄ 综合 ⁄ 共 908字 ⁄ 字号 小 中 大 ⁄ 评论关闭 After you install Of ...

  5. Backup and restore of FAST Search for SharePoint 2010

    一个同事问我一个问题: 如果FAST Search for SharePoint 2010被full restore到了一个之前的时间点, 那么当FAST Search重新开始一个增量爬网的时候, 会 ...

  6. How does Web Analytics works under sharePoint 2010

    [http://gokanx.wordpress.com/2013/06/15/how-does-web-analytics-works-under-sharepoint-2010/] You nee ...

  7. SharePoint 2010中列表Add和Delete事件解析

    转:http://winsystem.ctocio.com.cn/26/11400026_2.shtml [IT专家网独家撰稿]SharePoint 2010与以前的版本相比,天翻地覆的变化并不为过. ...

  8. WCF:为 SharePoint 2010 Business Connectivity Services 构建 WCF Web 服务(第 1 部分,共 4 部分)

    转:http://msdn.microsoft.com/zh-cn/library/gg318615.aspx 摘要:通过此系列文章(共四部分)了解如何在 Microsoft SharePoint F ...

  9. SharePoint 2010中使用Visual Studio 2010进行方便快速的Web Part开发

    转:http://www.cnblogs.com/fatwhale/archive/2010/02/24/1672633.html 在Visual Studio 2010中,  已经集成了用于Shar ...

随机推荐

  1. orcale 列改为大字段

    --添加临时列ALTER TABLE MPD_TASK_LIST ADD(  CLOB_TEMP clob);--数据拷贝到临时列update MPD_TASK_LIST set CLOB_TEMP ...

  2. ankhSVN安装后,VS2010使用

    Tool->option->Source control->plug-in selection,选择ankhSVN AnkhSvn-2.5.12478.zip

  3. 发布后500访问错误 —— dll引用错误

    System.Net.Http相关dll

  4. javascript进阶-原型prototype

    一.javascript原型认识 很多编程语言都有类的概念,我们可以拿原型和类进行比较,看看它们之间的区别以及相同点在哪里. 1.类:类是一个具体事物的抽象所以类是一个抽象的东西,在面向对象中类可以用 ...

  5. 浅析为什么char类型的范围是 —128~+127

    转载于daiyutage 在C语言中, signed char 类型的范围为-128~127,每本教科书上也这么写,但是没有哪一本书上(包括老师)也不会给你为什么是-128~127,这个问题貌似看起来 ...

  6. MySQL防注入[待续]

    1.将输入的参数变成整数 $id = isset[$_GET['tid']]?$_GET['tid']+0:0; 可以防止:"*.php?tid=3 or 1"这样的语句.

  7. 【转】C# 中访问修饰符

    用通过代码:  类内部 using System;class Mod{    void defaultMethod()    {        Console.WriteLine("this ...

  8. GridView九宫格菜单实现方式

    <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android=&q ...

  9. linux安装配置sendmail实现邮件发送

    sendmail配置 yum -y update sendmail sendmail-cf SendMail相关目录1. 设定档目录:/etc/mail2. 记录档:/var/log/maillog3 ...

  10. Java实现邮箱找回密码 --转载

    通过邮件找回密码功能的实现 1.最近开发一个系统,有个需求就是,忘记密码后通过邮箱找回.现在的系统在注册的时候都会强制输入邮箱,其一目的就是 通过邮件绑定找回,可以进行密码找回.通过java发送邮件的 ...