October 01, 2010
If you get a Unknown server tag 'EPiServerUI:DynamicTable' error when trying to access your EPiServer administration pages the most possible source would be that your web.config has different UI-paths. Check your web.config so that they are consistent (like in the example below, they all point at /mysite/UI/something):<siteSettings ... uiUrl="~/mysite/UI/" ... />Most likely you'll find that some of the UI-paths points to "somewhere-else/ui/", just point it to the correct folder and hopefully your problem will be solved.
<add virtualPath="~/mysite/UI/" ... />
<location path="mysite/ui">..</location>
<location path="mysite/ui/admin">..</location>
Comments
comments powered by Disqus