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
<!-- 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.
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.
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
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
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
I'm having the same problem. Do you remember how you fixed this?
Thijs
No I can't.
It might have been an ACL problem on my machine, but I honestly can't remember.
Regards
Jesper
Ok thanks anyway. I solved the problem by re-adding the dll's in my bin folder
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.
is working on a reply...