Try our conversational search powered by Generative AI!

Loading...
Area: Optimizely Search & Navigation
ARCHIVED This content is retired and no longer maintained. See the latest version here.

Recommended reading 

Configuration settings

The shell module needs to be configured to become visible. First, you need to create an index. When done. you get an e-mail with an episerver.find section that you must add to the sites web.config. The Episerver shell module registration and configuration are done automatically when you install using NuGet packages.

Below are the changes made in configuration when installing Episerver Find packages.

Register Find module:

XML
<episerver.shell>
  <publicModules rootPath="~/modules/" autoDiscovery="Minimal" />
  <protectedModules rootPath="~/epiui/">
    <strong><add name="Find">
      <assemblies>
        <add assembly="EPiServer.Find.Framework" />
        <add assembly="EPiServer.Find.Cms" />
      </assemblies>
    </add></strong>
    <add name="Shell" />
    <add name="CMS" />
  </protectedModules>
</episerver.shell>

Add handler for embedded resources:

XML
<location path="EPiServerFindEmbeddedResources">
    <system.webServer>
        <handlers>
            <clear />
            <add name="wildcard" path="*" verb="*" type="EPiServer.Web.StaticFileHandler, EPiServer.Framework" />
        </handlers>
    </system.webServer>
</location>

Access rights

Access to views in the shell module is restricted to users in one of three groups:

  • WebAdmins
  • Administrators
  • SearchAdmins (Find-specific)

Note: The first two groups have Admin view access in Episerver CMS, and they will also have access to shell module views by default. To grant users without administrator access, create the SearchAdmins group for the membership and role provider you are using, and add those users to it.

Supported browsers

The shell module relies heavily on CSS 3, so only modern browsers are supported. See the system requirements for Episerver.

Added views

When properly configured, the shell module adds the views and subviews described below to the editing interface.

Manage

Statistics

  • This view shows search statistics for the top most frequent searches, searches without hits, and searches without relevant hits. Statistics can be displayed for last 24 hours, last week, last month or last year.

Optimization

  • Best bets. Can be site and language-specific or site and language-independent, depending on choices made in the site and language drop-downs (near the top of the view).

    Note: To apply Best Bets to search results, you must apply an ApplyBestBets extension method.

  • Related queries. Can be either site and language-specific or site and language independent.

    Note: To use related queries, you must apply a DidYouMean method.

  • Synonyms. Can be language-specific or apply to any language, but cannot be site specific.

    Note: To use synonyms, you must apply a UsingSynonyms extension method.

Configure

  • Boosting. Provides a form for fine tuning weights of different parts of the content in search results. Site and language independent.
  • Index. Lets you to clear data stored in the index and index statistics.
  • Connectors. Provides a view for creating and listing connectors.

Overview

The Overview and Explore views let you browse indexed content, displaying information about indexed documents count grouped by type. Filtering by type and arbitrary search query is supported.  

 Related topic

Do you find this information helpful? Please log in to provide feedback.

Last updated: Nov 16, 2015

Recommended reading