World is now on Opti ID! Learn more

Daniel Ovaska
Feb 14, 2020
  40
(0 votes)

Fix problems with edit mode

Episerver edit mode normally works great. But sometimes a developer manages to crash it.  I'll go through the most common issues you can check for to make it work again

  1. WebSockets not enabled on IIS
    Easy to fix by adding the feature to IIS. If you forget this you will get a warning in edit mode and some newer functionality like support for projects won't work. 


  2. Parts of the nuget package for edit mode was lost along the way
    Double check that you have the relevant zip files below modules on the server. Sometimes that get lost in the deploy process somewhere.

    If they don't exist on your development environment, reinstall the relevant nuget packages.
  3. Make sure edit mode hasn't been removed
    Sometimes you do this if you have a separate editor server. It can look similar to this in webconfig. Notice that the allow tag has been removed. Common symphoms are that you get a 404 or 403 after logging in. 
  4. Custom properties
    If edit mode doesn't work properly or goes blank for some content types, check in admin mode if there are some custom properties on them. Try removing them in development environment to see if that is what causes the issue. Remove old properties that isn't used anymore on that content type.

  5. Check edit mode for js errors
    Use Chrome developer tools or similar and check console. This can give you a good hint what isn't working. Often custom properties like above.

  6. PropertyList and Url properties can't be saved
    A common problem if you add a Url property to a property list is that you forget to handle the json transformation properly. Add some attributes to handle the Url property correctly. If you don't, saving the property list won't work correctly. 
    [JsonProperty]
    [JsonConverter(typeof(UrlConverter))]
    [Display(Name = "Link1", Order = 200)]
    public virtual Url UrlLink { get; set; }
    ​

    Hope that helps someone with troubleshooting if edit mode gives you a hard time. 

    Happy coding!

    PS If you blog and use web[dot]config somewhere in your blog, cloudflare will block you from creating that blog. DS

Feb 14, 2020

Comments

Please login to comment.
Latest blogs
Make Global Assets Site- and Language-Aware at Indexing Time

I had a support case the other day with a question around search on global assets on a multisite. This is the result of that investigation. This co...

dada | Jun 26, 2025

The remote server returned an error: (400) Bad Request – when configuring Azure Storage for an older Optimizely CMS site

How to fix a strange issue that occurred when I moved editor-uploaded files for some old Optimizely CMS 11 solutions to Azure Storage.

Tomas Hensrud Gulla | Jun 26, 2025 |

Enable Opal AI for your Optimizely products

Learn how to enable Opal AI, and meet your infinite workforce.

Tomas Hensrud Gulla | Jun 25, 2025 |

Deploying to Optimizely Frontend Hosting: A Practical Guide

Optimizely Frontend Hosting is a cloud-based solution for deploying headless frontend applications - currently supporting only Next.js projects. It...

Szymon Uryga | Jun 25, 2025

World on Opti ID

We're excited to announce that world.optimizely.com is now integrated with Opti ID! What does this mean for you? New Users:  You can now log in wit...

Patrick Lam | Jun 22, 2025

Avoid Scandinavian Letters in File Names in Optimizely CMS

Discover how Scandinavian letters in file names can break media in Optimizely CMS—and learn a simple code fix to automatically sanitize uploads for...

Henning Sjørbotten | Jun 19, 2025 |