Get the latest!

Follow bloggers on Optimizely World to get the latest from people who know all about the Optimizely platform! You will find blog posts from the entire Optimizely community, as well as from the Optimizely development teams.

Start blogging - create your own blog (requires log in)
Manage your blog posts on Optimizely World (requires log in)
Rules for blogging on Optimizely World

Syndication and sharing

loading
  • Syndicated blog - Posted on: Jan 09, 2017

    A while ago I was struggling with permanent redirects problem. The page linked as a shortcut was not updated; always first version was used as a redirect destination. I had no idea where it could be cached. Of course at the end it turned out that...

  • Syndicated blog - Posted on: Jan 09, 2017

    Episerver just released a new version which added a constructor injection support in scheduled jobs. It encouraged me to create a list of different Episerver infrastructure parts which still do not support a constructor injection. Initially, I was...

  • Syndicated blog - Posted on: Jan 08, 2017

    Security is a beast! As a bare minimum, we need to ensure our applications meet industry best practices when released into the wild. The vast majority of attacks seek to exploit common vulnerabilities so by implementing basic standards we can...

  • Posted on: Jan 06, 2017
    Rating:

    Episerver has functionality for export/import DDS items and use it for export/import property settings. This code shows how to export custom DDS types. You don't need to do anything for import. using System; using System.Linq; using EPiServer.Core...

  • Posted on: Jan 06, 2017
    Rating:

    Since 10.2.0, Episerver Commerce introduced big changes that support cart features: SerializableCart . Why? In Commerce 9, we improved catalog performance -- about 10 times faster as I remember :). The purpose of SerializableCart is also performan...

  • Syndicated blog - Posted on: Jan 05, 2017

    One of the good tools to use for performance monitoring is “Performance Counter”. This works well out of the box with Episerver CMS. Setting it up is quite simple, you need to change web.config and add “enablePerformanceCounters” to “episerver->ap...

  • Syndicated blog - Posted on: Jan 05, 2017

    In this post I´ll describe how to do it the hard core way by replacing the webforms template (aspx) to MVC view (cshtml).

  • Posted on: Jan 04, 2017
    Rating:

    If you want to check if a contentAreaItem is match current user all visitor group criteria you can use the following Methods: public static bool IsMatchCriteria(ContentAreaItem contentAreaItem) { var result = true; contentAreaItem.AllowedRoles.For...