A critical vulnerability was discovered in React Server Components (Next.js). Our systems remain protected but we advise to update packages to newest version. Learn More.
A critical vulnerability was discovered in React Server Components (Next.js). Our systems remain protected but we advise to update packages to newest version. Learn More.
I recently experienced some files, such as javascripts and images, could not load in a website running EPiServer. When testing with the url directly to one of these files the EPiServer login page appeared. Logging in wouldn’t even help. After...
Here’s a simple extension method for EPiServer when you need to get the friendly url from an internal url. Note the last line checking if the Uri is an absoluteUri first. If you try to get the AbsoluteUri if it’s not you will get the following...
In EpiServer you might sometimes need to get PageData, preferably typed, from a page guid. Here is a simple method for getting a page only by sending a guid as an argument, which we can do thanks to the PermanentPageLinkMap class, and results of...
Here is just a few examples of how to create and modify pages in EPiServer CMS 5/6 when you are using PageTypeBuilder. Create new page: ?View Code CSHARP1 2 3 4 5 6 7 8 PageReference targetContainer = PageReference.StartPage; MyPageType newPage =...
If the right click context menu is missing in EPiServer CMS, the reason might not be obvious. First of all you should check if the context menu javascript is visible in the html source code, which should include something like this: var menu1 = ne...