I am trying to get a page indexed with indexed search and sitecrawler on a old TYPO3 4.5 website - but I have tried almost anything to no avail.
I am running the site crawler and it will get a full list of URLs that can be crawled and I am running throught the entire queue
I have setup a "Index Configuration"
and a site crawler
But it will not index
the "cache_pages" table also seems to be empty - but caching is enable for all pages.
What could I be missing?




The screenshot showing crawler queue looks good. It seems the crawler is configured correctly, but indexed search is not indexing the pages. Empty page cache suggests you have cache disabled shomehow.
Indexed search is indexing pages when few conditions are met:
page.config.no_cache = 1in TypoScript, cache is not disabled in page properties, and cache is not disabled from PHP code)<!--TYPO3SEARCH_begin-->and<!-- TYPO3SEARCH_end-->page.config.index_enable = 1is setWhat you can check is:
Few useful links:
You can find indexed_search documentation here
Crawler documentation
Useful tutorial on setting indexed search with crawler