2016-09-07 10 views
4

特定のアイテムのリンクされたアイテムを表示しようとしています。私はクライアントのコンテンツ管理サーバーでこれをやっています。ナビゲート - >リンクをクリックすると何も起こりません。私はJavaScriptコンソールにこのエラーが表示されます。ヌル参照例外のため、Sitecoreの[リンク]ボタンが機能しません

http://sitename.local/sitecore/shell/default.aspx?xmlcontrol=Gallery.Links& ...デDE & VS = 1 &デシベル= & sc_contentを習得= & ShowEditor = 1 & Ribbon.RenderTabsを習得=真

は、リソースのロードに失敗しました:サーバが

500(内部サーバーエラー)の状態で応答ここで私はサイトコアログに表示されるものです。

38424 19:09:30 ERROR Application error. 
Exception: System.Web.HttpUnhandledException 
Message: Exception of type 'System.Web.HttpUnhandledException' was thrown. 
Source: System.Web 
    at System.Web.UI.Page.HandleError(Exception e) 
    at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) 
    at System.Web.UI.Page.ProcessRequest(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) 
    at System.Web.UI.Page.ProcessRequest() 
    at System.Web.UI.Page.ProcessRequest(HttpContext context) 
    at System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() 
    at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) 

Nested Exception 

Exception: System.Reflection.TargetInvocationException 
Message: Exception has been thrown by the target of an invocation. 
Source: mscorlib 
    at System.RuntimeMethodHandle.InvokeMethod(Object target, Object[] arguments, Signature sig, Boolean constructor) 
    at System.Reflection.RuntimeMethodInfo.UnsafeInvokeInternal(Object obj, Object[] parameters, Object[] arguments) 
    at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture) 
    at Sitecore.Reflection.ReflectionUtil.InvokeMethod(MethodInfo method, Object[] parameters, Object obj) 
    at Sitecore.Web.UI.Sheer.ClientPage.OnLoad(EventArgs e) 
    at System.Web.UI.Control.LoadRecursive() 
    at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) 

Nested Exception 

Exception: System.ArgumentNullException 
Message: Value cannot be null. 
Parameter name: ownerItem 
Source: Sitecore.Kernel 
    at Sitecore.Diagnostics.Assert.ArgumentNotNull(Object argument, String argumentName) 
    at Sitecore.Data.Fields.Field..ctor(ID fieldID, Item ownerItem) 
    at Sitecore.Shell.Applications.ContentManager.Galleries.Links.GalleryLinksForm.GetLinkTooltip(Item reference, ItemLink link) 
    at Sitecore.Shell.Applications.ContentManager.Galleries.Links.GalleryLinksForm.RenderReferences(StringBuilder result, List`1 references) 
    at Sitecore.Shell.Applications.ContentManager.Galleries.Links.GalleryLinksForm.OnLoad(EventArgs e) 

項目フィールドの作成時に、ownerItem引数がnullであるようです。

これは、いくつかの異なる項目で発生します(例:テンプレートとサブレイアウト。

この問題の原因は何ですか?どのように修正できますか?

+0

Sitecoreのバージョンはありますか? –

+0

@SitecoreClimberタグで指定されているように、8.1です。正確には、Sitecore 8.1 Update 1 revです。 151207. –

答えて

7

この問題は、サイトコアのバグとして登録され、それは修正の一環として、サイトコア8.1アップデート2で修正された7.2アップデート6からマージ: は

「サイトコア7.2から、関連するすべての修正アップデート-6が含まれています」

https://dev.sitecore.net/Downloads/Sitecore%20Experience%20Platform/Sitecore%2081/Sitecore%20Experience%20Platform%2081%20Update2/Release%20Notes

「452241:クロスデータベース・リンクが存在する場合のリンク]ダイアログボックスが失敗した」:

サイトコア8.1アップデート1で問題を解決するには https://sdn.sitecore.net/Products/Sitecore%20V5/Sitecore%20CMS%207/ReleaseNotes/ChangeLog.aspx

を、以下のパッチをインストールしてください

  1. 添付したSitecore.Support.452241.dllファイルをソリューションのbinフォルダに置きます。新しいものと
 <CodeBeside Type="Sitecore.Shell.Applications.ContentManager.Galleries.Links.GalleryLinksForm,Sitecore.Client"/> 

  • は、ウェブサイトで次の文字列を置き換えます\サイトコアの\シェル\アプリケーションは、Content Manager \ギャラリー\リンク\ギャラリーLinks.xmlダイアログを\

     <CodeBeside Type="Sitecore.Support.Shell.Applications.ContentManager.Galleries.Links.GalleryLinksForm,Sitecore.Support.452241"/> 
    

    ファイルのリンク:https://www.dropbox.com/s/l36zqhwjtahl4q2/Sitecore.Support.452241.dll?dl=0

  • +0

    Typo:この問題は「8.2アップデート」ではなく「8.1アップデート2」で修正されました。 –

    +0

    はい、あなたは正しいです。私は自分の答えを更新しました。私は正しいリンクを置いたが、テキストが間違っていた –

    関連する問題