0

カスタム モジュールを追加した新しい Orchard CMS 1.4.2 インストールがあります。

カスタム モジュールには、基本的に bodypart ContentPart のコピーである 3 つのカスタム パーツがあります。

bodypart (または Orchard...) についてはあまり知りませんが、mycustompartrecord クラスは次のものから派生していることに注意してください。

ContentPartVersionRecord

ひとつの質問は、なぜだかわからないということです。

もう 1 つの質問は、サイトを実行しているときに、カスタムの「bodypart」コンテンツ パーツの 1 つのテキストを更新した後、次のエラーが発生することです。

2012-06-02 08:15:49,580 [21] Orchard.ContentManagement.DefaultContentManager - ArgumentOutOfRangeException thrown from IContentHandler by Orchard.Autoroute.Handlers.AutoroutePartHandler
System.ArgumentOutOfRangeException: Index was out of range. Must be non-negative and less than the size of the collection.
Parameter name: index
   at System.ThrowHelper.ThrowArgumentOutOfRangeException()
   at System.Collections.Generic.List`1.get_Item(Int32 index)
   at System.Linq.Enumerable.ElementAt[TSource](IEnumerable`1 source, Int32 index)
   at Orchard.Autoroute.Services.AutorouteService.GetDefaultPattern(String contentType)
   at Orchard.Autoroute.Services.AutorouteService.GenerateAlias(AutoroutePart part)
   at Orchard.Autoroute.Handlers.AutoroutePartHandler.PublishAlias(AutoroutePart part)
   at Orchard.Autoroute.Handlers.AutoroutePartHandler.<.ctor>b__2(PublishContentContext ctx, AutoroutePart part)
   at Orchard.ContentManagement.Handlers.ContentHandler.InlineStorageFilter`1.Published(PublishContentContext context, TPart instance) in C:\Users\Andrew\Documents\Dox\Webs\Orchard\src\Orchard\ContentManagement\Handlers\ContentHandler.cs:line 156
   at Orchard.ContentManagement.Handlers.StorageFilterBase`1.Orchard.ContentManagement.Handlers.IContentStorageFilter.Published(PublishContentContext context) in C:\Users\Andrew\Documents\Dox\Webs\Orchard\src\Orchard\ContentManagement\Handlers\StorageFilterBase.cs:line 81
   at Orchard.ContentManagement.Handlers.ContentHandler.Orchard.ContentManagement.Handlers.IContentHandler.Published(PublishContentContext context) in C:\Users\Andrew\Documents\Dox\Webs\Orchard\src\Orchard\ContentManagement\Handlers\ContentHandler.cs:line 274
   at Orchard.ContentManagement.DefaultContentManager.<>c__DisplayClass3d.<Publish>b__3b(IContentHandler handler) in C:\Users\Andrew\Documents\Dox\Webs\Orchard\src\Orchard\ContentManagement\DefaultContentManager.cs:line 342
   at Orchard.InvokeExtensions.Invoke[TEvents](IEnumerable`1 events, Action`1 dispatch, ILogger logger) in C:\Users\Andrew\Documents\Dox\Webs\Orchard\src\Orchard\InvokeExtensions.cs:line 19

私は本当にこれの原因が何であるか分かりません。コンテンツの追加に悪影響はないようです。これらの体の部分のコピーを使用している方法と関係があると思われますが、よくわかりません.

ノート:

以前のスレッド (詳細はこちら) で説明したように、Orchard v.1.4.2 の CLEAN ソース コード インストール (つまり、モジュールなし、カスタムなし) を使用すると、別のエラーが発生しました。エラーは次のとおりです。

モジュールをインストールする前に、クリーン インストールを行ったところ、次のエラーが発生しました。

2012-05-31 17:59:43,876 [9] NHibernate.AdoNet.AbstractBatcher - Could not execute query: SELECT this_.Id as Id13_0_, this_.SerialNumber as SerialNu2_13_0_ FROM Settings_ShellDescriptorRecord this_ WHERE 1=1
    System.Data.SqlServerCe.SqlCeException (0x80004005): The specified table does not exist. [ Settings_ShellDescriptorRecord ]
       at System.Data.SqlServerCe.SqlCeCommand.ProcessResults(Int32 hr)
       at System.Data.SqlServerCe.SqlCeCommand.CompileQueryPlan()
       at System.Data.SqlServerCe.SqlCeCommand.ExecuteCommand(CommandBehavior behavior, String method, ResultSetOptions options)
       at System.Data.SqlServerCe.SqlCeCommand.ExecuteReader(CommandBehavior behavior)
       at System.Data.SqlServerCe.SqlCeCommand.ExecuteDbDataReader(CommandBehavior behavior)
       at System.Data.Common.DbCommand.System.Data.IDbCommand.ExecuteReader()
       at NHibernate.AdoNet.AbstractBatcher.ExecuteReader(IDbCommand cmd)
    2012-05-31 17:59:43,892 [9] NHibernate.Util.ADOExceptionReporter - The specified table does not exist. [ Settings_ShellDescriptorRecord ]
    2012-05-31 17:59:43,907 [9] NHibernate.Util.ADOExceptionReporter - The specified table does not exist. [ Settings_ShellDescriptorRecord ]

エラーはログに 1 回だけ表示されており、その後はシステムに影響を与えていないようです。これが autoroutepart エラーに関連しているかどうかはわかりません。

4

1 に答える 1

1

残念ながら、私はあなたの主な質問に答えることができません。

ContentPartVersionRecordの場合:バージョン管理するパーツが必要な場合(つまり、変更するたびにそのコンテンツの新しいコピーを保存する場合)、これを使用する必要があります。BodyPartは、バージョン管理されたコンテンツパーツのケースです。

発生しているSQL例外は、セットアップ時に予想されるように、完全に無害だと思います。このクエリは、DBがすでに設定されているかどうかを確認するために使用されます。失敗した場合は、そうではありません。

于 2012-06-02T12:13:39.577 に答える