November Happy Hour will be moved to Thursday December 5th.
AI OnAI Off
November Happy Hour will be moved to Thursday December 5th.
I asume this is a EPiServer CMS 5 website. If it is you can create your own replacement for the page "/systemui/edit/workspace.aspx" and maybe even the page "/systemui/edit/EditTree.aspx". Use a reflection tool and override the EPiServer class or create your own version of these pages where you disable the functionality for the Not Published List.
After this is done you have to make som additions to web.config.
First add the <virtualPathMappings> segment to the <episerver> section. Like this:
<virtualPathMappings>
<add url="~/systemui/edit/workspace.aspx" mappedUrl="~/OwnUI/edit/workspace.aspx" />
<add url="~/systemui/edit/edittree.aspx" mappedUrl="~/OwnUI/edit/edittree.aspx" />
</virtualPathMappings>
Secondly you must add (if it not already exist) a VirtualPathMappedProvider to the collection of VitrualPathProviders and place it as the last VPP, like this:
<add virtualName="ExtensionMapping" virtualPath="~/SystemUI/edit" bypassAccessCheck="false" showInFileManager="false" name="EPiServerUrlMappingVPP" type="EPiServer.Web.Hosting.VirtualPathMappedProvider,EPiServer" />
I hope this will help you.
/Peter
We have a large number of pages that are only used for Data management (we're talking 100s of thousands) generated by a tool. Is there a way to disable the "Not Published" List on the edit mode "Welcome to Episerver" front page as the database hit for each one is causing a large delay in loading it.
Cheers