1
私は、完全に適切に機能する既存のウェブサイトを持っていますが、新しいフィールド( 'Content'という名前)をベーステンプレート他のすべてのページテンプレートは継承します)、この新しいフィールドに対して検索することはできないようです。Sitecore検索:新しいテンプレートフィールドが検索インデックスに含まれていません
私は次のことを試してみました:
- 私の適切なセクションへ
<IndexAllFields>true</IndexAllFields>
設定を追加 - サイトコアのデスクトップにコントロールパネルから検索インデックスを再構築 を「スマートが公開」
- をやってweb.config
しかし私は運がありません。ここでの背景情報は、私が<IndexAllFields>
要素を追加したweb.configのスニペットです。私はあなたが単一行のテキストフィールドに保持されているために検索しているテキストが、あなたが必要な場合は、構成\の下にweb.configファイルに以下を追加することが判明
<configuration type="Sitecore.Search.SearchConfiguration, Sitecore.Kernel" singleInstance="true">
<indexes hint="list:AddIndex">
<index id="system" type="Sitecore.Search.Index, Sitecore.Kernel">
<param desc="name">$(id)</param>
<param desc="folder">__system</param>
<Analyzer ref="search/analyzer"/>
<locations hint="list:AddCrawler">
<core type="Sitecore.Search.Crawlers.DatabaseCrawler,Sitecore.Kernel">
<Database>core</Database>
<Root>/sitecore/content</Root>
<include hint="list:IncludeTemplate">
<application>{EB06CEC0-5E2D-4DC4-875B-01ADCC577D13}</application>
</include>
<Tags>application</Tags>
<Boost>2.0</Boost>
</core>
<core-controlpanel type="Sitecore.Search.Crawlers.DatabaseCrawler,Sitecore.Kernel">
<Database>core</Database>
<Root>/sitecore/content/applications/control panel</Root>
<include hint="list:IncludeTemplate">
<taskoption>{BDB6FA46-2F76-4BDE-8138-52B56C2FC47E}</taskoption>
</include>
<Tags>taskoption</Tags>
<Boost>1.9</Boost>
</core-controlpanel>
<master type="Sitecore.Search.Crawlers.DatabaseCrawler, Sitecore.Kernel">
<Database>master</Database>
<Tags>master content</Tags>
<IndexAllFields>true</IndexAllFields>
</master>
</locations>
</index>
</indexes>
</configuration>