Copied to clipboard

Flag this post as spam?

This post will be reported to the moderators as potential spam to be looked at


  • Jesper Hauge 298 posts 487 karma points c-trib
    Apr 07, 2011 @ 16:05
    Jesper Hauge
    0

    Examine Index is not being created by Umbraco

    I'm working on setting up an Examine Index on a Umbraco 4.7.0 install. But the index doesn't show up in the filesystem as usual when publishing a node. Here's my configuration

    <!-- ExamineSettings.config -->
    <Examine>
      <ExamineIndexProviders>
        <providers>
       <!-- Default backend providers here -->
       
       <add name="CupcakeIndex" type="UmbracoExamine.UmbracoMemberIndexer, UmbracoExamine"
          runAsync="false"
          logLevel="Verbose"
          debug="true"
          enabled="true"
          supportUnpublished="false"
          supportProtected="false"
          interval="10"
          analyzer="Lucene.Net.Analysis.WhitespaceAnalyzer, Lucene.Net" />
       
        </providers>
      </ExamineIndexProviders>
      <ExamineSearchProviders defaultProvider="InternalSearcher">
        <providers>
       <!-- Defailt backend providers here -->
       <add name="CupcakeSearcher" type="UmbracoExamine.UmbracoExamineSearcher, UmbracoExamine"
          analyzer="Lucene.Net.Analysis.WhitespaceAnalyzer, Lucene.Net" />
        </providers>
      </ExamineSearchProviders>
    </Examine>
    <!-- ExamineIndex.config -->
    <ExamineLuceneIndexSets>
     <!-- Standard backend indexsets here -->


     <!-- Cupcake index set used in frontend cupcake list to search for cakes by name and contestant -->
     <IndexSet SetName="CupcakeIndexSet" IndexPath="~/App_Data/TEMP/ExamineIndexes/Cupcakes/">
      <IndexAttributeFields>
       <add Name="id" />
       <add Name="nodeName" />
      </IndexAttributeFields>
      <IndexUserFields>
       <add Name="firstName" />
       <add Name="lastName" />
      </IndexUserFields>
      <IncludeNodeTypes>
       <add Name="Cupcake" />
      </IncludeNodeTypes>
      <ExcludeNodeTypes />
     </IndexSet>
    </ExamineLuceneIndexSets>

    As you can see I've set the log level to Verbose, but all the shows up in the log is: "[UmbracoExamine] CupcakeIndex indexer initializing". No Cupcake folder with indexes is being created in the file system.

    Also I've checked the standard InternalIndexSet with Luke (java util for browsing lucene indexes), and the content in there appears to be legit.

    Can anyone see what's wrong here?

    Regards
    Jesper Hauge

  • Jesper Hauge 298 posts 487 karma points c-trib
    Apr 07, 2011 @ 16:25
    Jesper Hauge
    0

    There's a small error in the config, tried editing the post, but it failed so:

    I _am_ using an UmbracoContentIndexer for the index, not an UmbracoMemberIndexer

    .Jesper

  • Thijs 97 posts 117 karma points
    Oct 27, 2011 @ 13:21
    Thijs
    0

    I'm having the same problem. Do you remember how you fixed this?

    Thijs

  • Jesper Hauge 298 posts 487 karma points c-trib
    Oct 27, 2011 @ 15:08
    Jesper Hauge
    0

    No I can't.

    It might have been an ACL problem on my machine, but I honestly can't remember.

    Regards
    Jesper 

  • Thijs 97 posts 117 karma points
    Oct 27, 2011 @ 15:10
    Thijs
    0

    Ok thanks anyway. I solved the problem by re-adding the dll's in my bin folder

  • smriti 32 posts 103 karma points
    Sep 07, 2017 @ 10:46
    smriti
    0

    Hi

    I'm facing the same problem. I don't see the default indexers on physical path. The path mentioned in ExamineIndex.config is App_Data/TEMP/ExamineIndexes but I don't see the "ExamineIndexes" folder in Temp.

    Please help.

Please Sign in or register to post replies

Write your reply to:

Draft