Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more
AI OnAI Off
Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more
We are using the solution from Henrik Lindström
http://www.lindstromhenrik.com/indexing-only-referenced-vpp-files-with-episerver-find/
The only modifications I have made to it is to verify that this row does not throw an error
var publicationStatus = content.PublishedInLanguage()[softLink.OwnerLanguage.Name];
It did it to for us since we have an upgraded Site Where OwnerLanguage was null.
Trying to figure out how to limit Episerver Find to only index pagefiles under published pages. The problem is that when i pass a empty search string to the search client it redirects me to episervers login page becouse I dont have access to see unpublished pagefiles.
If i comment out the following row from SearchInitialization.cs it works:
ContentIndexer.Instance.Conventions.EnablePageFilesIndexing();
but then no pagefiles are indexed...
Any ideas?