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
Have you been annoyed by the exception “License violation! License is already in use at another online site” when you switch from one web site to another on you developer machine? I have and the reason is of course that I use my developer license...
Consider this SQL Server query that is part of EPiServer CMS 5:SELECT tblPageLanguage. fkPageID, tblLanguageBranch. LanguageID as LanguageBranch FROM tblPage JOIN tblPageLanguage ON tblPage. pkID=tblPageLanguage. fkPageID LEFT...
What is a community? The term "community" has been around for a long time, only in the latest years has it been associated with the internet. A community in it's widest definition is a group of people sharing a common interest, cooperating to shar...
The EPiCloud module that I've been working on for a while is finally ready for release! Due to the EPiServer preferred module naming policy (no EPi.... please!) we had a few thoughts around the office here and one of my colleagues, Alan Bartlett,...
Back in EPiServer 4.60 when we introduced the new multilanguage support we did a lot of changes in the good old database, one of them were making a table for page languages called tblPageLanguage. This table became a subset of the main table...
new FilterPropertySort(“PageName”, FilterSortDirection.Descending).Filter(children);
In EPiServer.Filters there are some useful filters, like FilterPublished, FilterAccess etc. To use these filters, just do like this: new FilterPublished().Filter(somePageDataCollection); and it’s done. 🙂