Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
HI All,
We are trying to add spellcheck functionality to our Umbraco Examine search and have been following this guide, which looks like it will perfectly fulfill our requirements.
http://blog.aabech.no/archive/building-a-spell-checker-for-search-in-umbraco/
No matter how I seem to configure it we are getting:
TypeLoadException: Could not load type 'Assembly.SpellingIndexer' from assembly 'Assembly'.
Followed by Visual Studio trying to find the Examine manager in the file system.
Has anyone implemented the above? I'd really like to compare what I have to what works!
cheers, Trev
Hey, I found how to fix the issue, add an empty constructor in you SpellcheckIndexer
public SpellCheckIndexer():base(){}
And be careful with the hyphens in your namespaces if you have some.
Thanks for the reply! I got there in the end, but failed to update this
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
Adding Spell Check to Umbraco Examine Search
HI All,
We are trying to add spellcheck functionality to our Umbraco Examine search and have been following this guide, which looks like it will perfectly fulfill our requirements.
http://blog.aabech.no/archive/building-a-spell-checker-for-search-in-umbraco/
No matter how I seem to configure it we are getting:
TypeLoadException: Could not load type 'Assembly.SpellingIndexer' from assembly 'Assembly'.
Followed by Visual Studio trying to find the Examine manager in the file system.
Has anyone implemented the above? I'd really like to compare what I have to what works!
cheers, Trev
Hey, I found how to fix the issue, add an empty constructor in you SpellcheckIndexer
And be careful with the hyphens in your namespaces if you have some.
Thanks for the reply! I got there in the end, but failed to update this
is working on a reply...