Don't miss out Virtual Happy Hour this Friday (April 26).

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 

Introduction

This document describes features in the shell module of EPiServer Find versions lower than 7.5. EPiServer Find integration comes with a shell module that adds a new top level menu item to the EPiServerOnline Center view. The shell module has three main views:

In order for the shell module to be visible, it needs to be configured. The configuration settings are described below.

Configuration settings

To configure EPiServer Find to work with CMS, add a new element to the episerver.shell element in web.config. To configure the general EPiServer module along with the CMS specific UI components, add the below element to the protectedModules element.

C#
<add name="Find">
  <assemblies>
    <add assembly="EPiServer.Find.Framework" />
    <add assembly="EPiServer.Find.Cms" />
  </assemblies>
</add>

After doing this, the complete episerver.shell element in web.config should look something like this:

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

Access rights

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

  • WebAdmins
  • Administrators
  • SearchAdmins

Note: the first two groups typically have Admin view access in EPiServer CMS. This means that administrators typically have access to shell module views by default. To grant access to users without administrator access (such as those in the WebEditors role), create a new group named SearchAdmins and add them to it.

Supported browsers

As the shell module relies heavily on CSS 3, only modern browsers are supported. Refer to the system requirements for EPiServer Find for more information.

See also

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

Last updated: Sep 21, 2015

Recommended reading