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.
Had some trouble loading a vitrual file containing spaces. The problem was apperently that some characters were urlencoded, a simple Server.UrlDecode(CurrentPage[“DocumentPath”]) solved the problem. 🙂
I’ve had some problem to link to a page to another language then the current language. Even though I have a PageData-object with anouther languagebranch, it stills makes a link to the current language. My own solution, building a url by...
VirtualFile file = System.Web.Hosting.HostingEnvironment.VirtualPathProvider.GetFile( CurrentPage[“FilePath”].ToString() ); UnifiedFile f = file as UnifiedFile; return f.Length / 1024 + ” kb”;
The new properties AppSettings and AppSettingsMultiple in EPiServer CMS 5 is a pretty nice feature, but when yesterday when I tried to implement it, I had a hard time finding out how to do it. But finally I did. First of all, in edit mode,...
new FilterPropertySort(“PageName”, FilterSortDirection.Descending).Filter(children);