Getting the following error when trying to edit in 9.2. When I click on the pencil icon it simply refreshes the pages and does not go into edit mode. This site has just been deployed to a staging server and is working fine on my local VM. It is not due to third party module because it is affecting more than one page.
Edit mode works when page accessed from browser on the staging server. When accessing the staging link remotely, the same error occurs. Looks like a 302 to the page is happening when accessing it remotely.
Other users reporting similar problem:
http://www.dnnsoftware.com/forums/threadid/539819/scope/posts/cannot-edit-any-pages
http://www.dnnsoftware.com/answers/unable-to-edit-a-page-via-the-pencil-icon-on-the-page
2018-09-18 12:16:26,639 [ServerName][Thread:14][ERROR] DotNetNuke.Services.Exceptions.Exceptions - System.Threading.ThreadAbortException: Thread was being aborted. at System.Threading.Thread.AbortInternal() at System.Threading.Thread.Abort(Object stateInfo) at System.Web.HttpResponse.AbortCurrentThread() at System.Web.HttpResponse.Redirect(String url, Boolean endResponse, Boolean permanent) at Evoq.Content.Library.ContentEditor.ContentEditorManager.AutoSetUserMode() at Evoq.Content.Library.ContentEditor.ContentEditorManager.OnInit(EventArgs e) at System.Web.UI.Control.InitRecursive(Control namingContainer) at System.Web.UI.Control.AddedControl(Control control, Int32 index) at Evoq.Content.Library.UI.Skins.EventListeners.EvoqContentSkinEventListener.OnSkinInit(Object sender, SkinEventArgs e)
答案 0 :(得分:0)
这可能是您必须呼叫的Response.Recirect()
的正常行为。它将始终中止当前线程并抛出ThreadAbortException
要解决此问题,只需将endResponde
的值设置为false
答案 1 :(得分:0)
生成的错误消息完全令人误解。
我们最近重新命名了整个网站,其中包括新字体。这些字体之一是“ .woff2”。我忽略了在我们的登台服务器上的IIS中为此字体添加mime类型。当我们为该字体将MIME类型添加到IIS时,编辑问题便自动解决了!