I need to make a small change to the AdminGroup.aspx file, but don't want to make it in the C:\Program Files\EPiServer\CMS\5.2.375.7\Application\UI\Admin\AdminGroup.aspx as it is shared by other EPiServer sites.
You can use VirtualPathMappings to handle that. The web.config would be settings will be similar to this:
<!-- need to be the added last in the list of virtualPath providers --> <providers> <add showInFileManager="false" virtualName="AdminMapping" virtualPath="~/your/relative/path/to/ui/admin/AdminGroup.aspx" bypassAccessCheck="false" name="AdminMapping" type="EPiServer.Web.Hosting.VirtualPathMappedProvider,EPiServer" /> </providers>
Hi,
I need to make a small change to the AdminGroup.aspx file, but don't want to make it in the C:\Program Files\EPiServer\CMS\5.2.375.7\Application\UI\Admin\AdminGroup.aspx as it is shared by other EPiServer sites.
EPi4 used shadow folders to accomplish that.
Thanks
Danie