Forum OpenACS Q&A: Re: static page search indexing difficulties - ghosts in my computer

Matthew,

If the static pages have already been added to the database you need to add them to the search queue.

Try something like this:

insert into search_observer_queue (
     select static_page_id, now(), 'INSERT'
     from static_pages
     );

This will add the items that were already scanned into the search_observer_queue. If you tail the error log you should see the items being indexed in 30 seconds or so. If not you might see an error message. Make sure that the static pages ContentProvider service contract is installed.