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
Modifying a page's ACL on one of the DataFactory events sounds like an easy task at first, but there is one hole to get stuck in.
While browing in the tblContentProperty I stumbled upon how a ContentArea is saved in the database. It’s quite similar to how Dynamic Content is serialized in a XhtmlString: {} {} In my example I have a Page Type called EditorPage presenting all...
There is an alternative way of rendering content when using MVC. By implementing IRenderTemplate and IView, the class will be registered as a render template for type (T). Short before the RTM release of EPiServer 7, we found out that a block...
There are several exciting things with the new Blocks in EPiServer 7 CMS. One of the most convenient things when you need to add a group of data to a page type, for example an image + alternative text or an url + clickable text or maybe a group of...
Detta plugin är ett enkelt sätt att testa ditt tema och se om det håller upp till de senaste tema-standarderna. Med detta plugin kan du köra likadana automatiserade testverktyg på ditt tema som WordPress.org använder för teman. Testerna körs i adm...
Här kommer en snippet hur du tar bort index.php i urlen i Codeigniter. # Turn on URL rewriting RewriteEngine On # If your website begins from a folder e.g localhost/my_project then # you have to change it to: RewriteBase /my_project/ # If your sit...
I’ve seen a few forum posts from users having this issue. One of the best threads covering this subject is this one: http://world.episerver.com/Modules/Forum/Pages/thread.aspx?id=63028 This thread actually contains a good way to reproduce the erro...
Are you using Find and index lots of custom data? Improve performance by Indexing lists of objects, instead of one by one, as shown in the example below. 1: // Not optimal 2: List objects = GetObjectsFromSomeWhere(); 3: foreach (var o in objects) ...