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

Try our conversational search powered by Generative AI!

Henrik Fransas
Sep 9, 2014
  4357
(0 votes)

How to solve “Missing configuration section: episerver” error

A couple of times I have gotten this message when updating the nuget-package from EPiServer. The problem is that one of the nuget packages has an error in it’s web.config transformation that puts the assembly-dependency back to an old version of EPiServer.Configuration.

If you see this error, check your configuration file (web.config) and search for this row:

<assemblyIdentity name="EPiServer.Configuration" publicKeyToken="8fe83dea738b45b7" culture="neutral" />

Check what version it says, for me after last upgrade it said:

<dependentAssembly>
  <assemblyIdentity name="EPiServer.Configuration" publicKeyToken="8fe83dea738b45b7" culture="neutral" />
  <bindingRedirect oldVersion="0.0.0.0-7.5.394.2" newVersion="7.5.394.2" />
</dependentAssembly>

That is a very old version, and after manually changing to the version I updated to (rightclick and select property on the EpiServer.Configuration – dll file below the package EPiServer CMS Core) I got it to work

dependentAssembly>
  <assemblyIdentity name="EPiServer.Configuration" publicKeyToken="8fe83dea738b45b7" culture="neutral" />
  <bindingRedirect oldVersion="0.0.0.0-7.13.3.0" newVersion="7.13.3.0" />
</dependentAssembly>

I will report it to EPiServer as a bug

Sep 09, 2014

Comments

Sep 10, 2014 09:26 AM

I cant see that we have changed anything regarding this. What we do is that we have a install.ps1 that is called during install. It will iterate over all files in the lib folder for that specific nuget package and add binding redirects for them. Clearly 7.5.394.2 version is not there....
My guess is for some reason is GAC installed assemblies involved, perhaps by Visual Studio??
But please report a bug, and then we can try to investigate more around this. Please add as much information as possible in the bug, that can be very useful during investigation.

Henrik Fransas
Henrik Fransas Sep 11, 2014 08:04 AM

I will do that Johan, I think it was in the order i installed it, but I will try to reproduce it on a alloy-site

Please login to comment.
Latest blogs
Solving the mystery of high memory usage

Sometimes, my work is easy, the problem could be resolved with one look (when I’m lucky enough to look at where it needs to be looked, just like th...

Quan Mai | Apr 22, 2024 | Syndicated blog

Search & Navigation reporting improvements

From version 16.1.0 there are some updates on the statistics pages: Add pagination to search phrase list Allows choosing a custom date range to get...

Phong | Apr 22, 2024

Optimizely and the never-ending story of the missing globe!

I've worked with Optimizely CMS for 14 years, and there are two things I'm obsessed with: Link validation and the globe that keeps disappearing on...

Tomas Hensrud Gulla | Apr 18, 2024 | Syndicated blog

Visitor Groups Usage Report For Optimizely CMS 12

This add-on offers detailed information on how visitor groups are used and how effective they are within Optimizely CMS. Editors can monitor and...

Adnan Zameer | Apr 18, 2024 | Syndicated blog

Azure AI Language – Abstractive Summarisation in Optimizely CMS

In this article, I show how the abstraction summarisation feature provided by the Azure AI Language platform, can be used within Optimizely CMS to...

Anil Patel | Apr 18, 2024 | Syndicated blog

Fix your Search & Navigation (Find) indexing job, please

Once upon a time, a colleague asked me to look into a customer database with weird spikes in database log usage. (You might start to wonder why I a...

Quan Mai | Apr 17, 2024 | Syndicated blog