Item 5 of 13 Previous | Next

1
Vote

1.4 not working with Umbraco on Azure

description

Hi,

I followed the instructions on the Examine with Azure page. It's not working when I search for something in the Umbraco backoffice. Below are my config files. Can someone tell me if these are correct? (I've added a blob storage account in the web.config as per the docs)
Thanks in advance.

ExamineIndex.config:
<?xml version="1.0"?>
<!--
Umbraco examine is an extensible indexer and search engine.
This configuration file can be extended to create your own index sets.
Index/Search providers can be defined in the UmbracoSettings.config

More information and documentation can be found on CodePlex: http://umbracoexamine.codeplex.com
-->
<ExamineLuceneIndexSets>
<!-- The internal index set used by Umbraco back-office - DO NOT REMOVE -->
<IndexSet SetName="InternalIndexSet" IndexPath="mcitindex">
<IndexAttributeFields>
<add Name="id" />
<add Name="nodeName" />
<add Name="updateDate" />
<add Name="writerName" />
<add Name="path" />
<add Name="nodeTypeAlias" />
<add Name="parentID" />
</IndexAttributeFields>
<IndexUserFields />
<IncludeNodeTypes/>
<ExcludeNodeTypes />
</IndexSet>

<!-- The internal index set used by Umbraco back-office for indexing members - DO NOT REMOVE -->
<IndexSet SetName="InternalMemberIndexSet" IndexPath="mcitindex">
<IndexAttributeFields>
<add Name="id" />
<add Name="nodeName"/>
<add Name="updateDate" />
<add Name="writerName" />
<add Name="loginName" />
<add Name="email" />
<add Name="nodeTypeAlias" />
</IndexAttributeFields>
<IndexUserFields/>
<IncludeNodeTypes/>
<ExcludeNodeTypes />
</IndexSet>
</ExamineLuceneIndexSets>

ExamineSettings.config:
<?xml version="1.0"?>
<!--
Umbraco examine is an extensible indexer and search engine.
This configuration file can be extended to add your own search/index providers.
Index sets can be defined in the ExamineIndex.config if you're using the standard provider model.

More information and documentation can be found on CodePlex: http://umbracoexamine.codeplex.com
-->
<Examine RebuildOnAppStart="false">
<ExamineIndexProviders>
<providers>
<add name="InternalIndexer" type="UmbracoExamine.Azure.AzureContentIndexer, UmbracoExamine.Azure"
supportUnpublished="true"
supportProtected="true"
interval="10"
analyzer="Lucene.Net.Analysis.WhitespaceAnalyzer, Lucene.Net"
logLevel="Verbose"/>

<add name="InternalMemberIndexer" type="UmbracoExamine.Azure.AzureMemberIndexer, UmbracoExamine.Azure"
supportUnpublished="true"
supportProtected="true"
interval="10"
analyzer="Lucene.Net.Analysis.Standard.StandardAnalyzer, Lucene.Net"
logLevel="Verbose"/>
</providers>
</ExamineIndexProviders>

<ExamineSearchProviders defaultProvider="InternalSearcher">
<providers>
<add name="InternalSearcher" type="UmbracoExamine.Azure.AzureSearcher, UmbracoExamine.Azure"
analyzer="Lucene.Net.Analysis.WhitespaceAnalyzer, Lucene.Net"/>

<add name="InternalMemberSearcher" type="UmbracoExamine.Azure.AzureSearcher, UmbracoExamine.Azure"
analyzer="Lucene.Net.Analysis.Standard.StandardAnalyzer, Lucene.Net" enableLeadingWildcards="true"/>
</providers>
</ExamineSearchProviders>

</Examine>

No files are attached

comments