Try our conversational search powered by Generative AI!

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

Recommended reading 

­Database mode

[New in Episerver Core 9.7.0]

Episerver has introduced database mode configuration. The database mode configuration has two options: ReadWrite and ReadOnly (see Configuration).

ReadWrite mode

The ReadWrite mode is the default mode and the application works as normal.

ReadOnly mode

In the ReadOnly mode, the application can only load data from database. The saving and updating operations by EPiServer.Data.IDatabaseHandler throw exceptions, which is why some modules are disabled or work differently. These modules and functions are affected in the ReadOnly mode:

  1. Scheduler Service is disabled.
  2. Model synch is disabled.
  3. Indexing of content is disabled.
  4. User, role and claims synch are disabled.
  5. Automatic database updating throws exception if updating is needed.
  6. Statistics Logger is disabled.
  7. Saving web config file into database is disabled.

Configuration

The database mode can be configured by the databaseMode attribute on the episerver.dataStore section or by the episerver:DatabaseMode setting under the appSettings section.

Example of setting the ReadOnly mode by episerver.dataStore section:

<episerver.dataStore databaseMode="ReadOnly"></episerver.dataStore>

Example of setting ReadOnly mode by appsetting section:

<appSettings>

    <add key="episerver:DatabaseMode" value="ReadOnly" />

</appSettings>

Find Database mode by code

The IDatabaseMode can be used to find and detect the database mode by code:

ServiceLocator.Current.GetInstance<IDatabaseMode>().DatabaseMode

Accessing Protected Module in the ReadOnly mode

By default, HttpException returns status code 503 when accessing a protected module in the ReadOnly mode. You can override this behavior by listening to the AccessPath event. 

ServiceLocator.Current.GetInstance<IAccessReadOnlyProtectedModules>().AccessPath += (object sender, ReadOnlyProtectedModuleEventArgs e) =>

{ e.Handled = true; // Put your code here redirect to a custom readonly page… }

Override the default ReadOnly page

Set the episerver:ReadOnlyInfoUrl appSetting to override the default ReadOnly page (~/Util/ReadOnly.aspx)

<appSettings>
    <add key="episerver:ReadOnlyInfoUrl" value="~/OurCustomReadOnlyPage.html" />
</appSettings>
Do you find this information helpful? Please log in to provide feedback.

Last updated: May 17, 2016

Recommended reading