Reputation: 431
In one of my current project,result coming in preview mode but not coming in normal mode.
Work that i have already done:
I have researched a lot for this issue,i would highly appreciate for valuable feedback.
Upvotes: 1
Views: 1403
Reputation: 27132
Your saying that the item is in the web database, but you're using solr for displaying results.
Check if the item is in the Solr web index.
E.g. by using the url:
http://localhost:8983/solr/itembuckets/select?q=(_fullpath:"/sitecore/content/full/path/to/your/item")&rows=10&fq=_indexname:sitecore_web_index
Replace:
localhost
and 8983
with location of your Solr server location,itembuckets
with the name of your Solr core, sitecore_web_index
with the name of your index/sitecore/content/full/path/to/your/item
with a path of your item.If the item is not there it means that is not included in the index. Most probably database was restored from Live to UAT, but index was not rebuilt, so database and index are out of sync.
You need to add this item to the index or just execute full web index rebuilt from the Sitecore Control Panel
.
Upvotes: 1