Closed (fixed)
Project:
Views (for Drupal 7)
Version:
7.x-3.3
Component:
exposed filters
Priority:
Normal
Category:
Support request
Assigned:
Unassigned
Reporter:
Created:
19 Jun 2012 at 10:38 UTC
Updated:
10 Aug 2012 at 14:21 UTC
The following view on my site is working and showing all content correctly:
http://www.pipeline-conference.com/abstracts
However, any new content that I added recently is included in the view, but not when I try to find it through my exposed filter (search term). This could easly be seen when searching for any topic that is listed under "7th Pipeline Technology Conference 2012".
Clearing the caches (both Drupal cache and views cache) does not help.
Comments
Comment #1
damiankloip commentedIt looks like you are using a search field on the view. So you won't find any terms that aren't in the search index yet. This works the like drupal core search block etc...
This index will be updated when cron is run, or go to admin/config/search/settings and re-index. They should then be searchable.
Comment #2
de-fa commentedThanks, but this does not work for me. I still have the same problem after re-indexing.
If I use the normal search module (which is "search by pages" in my case), I get all the results including the latest content. But if I am using the search field in my view, I do not get these new results. Just try searching for "serra".
It also seems like I have the same problem as mentioned here: http://drupal.org/node/1055616. I have not applied this patch yet.
Comment #3
de-fa commentedI finally managed to get it running again.
What I did:
I disabled and uninstalled "search by pages". Did not help.
I "truncated" all 4 search related tables in Mysql ("TRUNCATE TABLE search_total;" etc.) and completely rebuilt the index from sratch by running cron. Now everything is working again like it should. I am not sure yet what is going to happen with new content from now on but at least all present content is now included in the index.
Comment #4
damiankloip commentedhm, So it's is definitely a search index issue of some kind. Thanks for reporting back.