World is now on Opti ID! Learn more
World is now on Opti ID! Learn more
I was given the task to import pages from EPiServer 4.6 to a new EPiServer 7 site. Access was limited and I had no possibility to modify the code or configuration of the 4.6 project. I went for a solution where an export package was used. First I...
I recently posted a reply about Reducing database size at EPiServer World and thought I'd assemble some queries that come in handy when analyzing a database gone huge. Here's a query that will give you the biggest tables by row count. SELECT so.na...
For a number of reasons it's widely recommended to use all lowercase URL's inside a web site. Unfortunately EPiServer out of the box uses the same casing as the entered PageName (unless you modify the URL manually). In order to always get a...
A complete example of how to manage global TinyMCE settings for your XHTML-string properties. I started out from Joel's post on Page Type Builder 2 Preview 1 and chose to keep handling my editor settings as global ones (see heading Managing global...
Did you now that if session state is enabled, the default ASP.NET setting, all requests from the same user session get queued and processed one after another? Disabling session state will make your server process all those requests simultaneously....