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, I would like to implement search in frontend site.
I configured follow this guide ti configure Exime: https://our.umbraco.com/Documentation/Reference/Searching/Examine/Quick-Start/index-v7
and i created search.cshtml
var searchQuery = Request.QueryString["query"]; if (!string.IsNullOrEmpty(searchQuery)) { @foreach (var result in Umbraco.Search(searchQuery)) { <a href="@result.Url">@result.Name</a> } }
But search is always empty.
Thank you all
Giampiero
I fixed this by removing the old files from the index at:
~/App_Data/TEMP/ExamineIndexes/External/Index/
~/App_Data/TEMP/ExamineIndexes/Internal/Index/
~/App_Data/TEMP/ExamineIndexes/InternalMember/Index/
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
Implement Search
Hi all, I would like to implement search in frontend site.
I configured follow this guide ti configure Exime: https://our.umbraco.com/Documentation/Reference/Searching/Examine/Quick-Start/index-v7
and i created search.cshtml
But search is always empty.
Thank you all
Giampiero
I fixed this by removing the old files from the index at:
~/App_Data/TEMP/ExamineIndexes/External/Index/
~/App_Data/TEMP/ExamineIndexes/Internal/Index/
~/App_Data/TEMP/ExamineIndexes/InternalMember/Index/
Thank you all
Giampiero
is working on a reply...