Reputation: 25267
I've installed the extension "Indexed Search" in a TYPO3 4.7 installation, but it won't work. When I add the plugin in a column, the "Starting point" field wont come.
I thought I could set it up with typoscript, so I added this to the template:
page.config.index_enable = 1
plugin.tx_indexedsearch{
show{
advancedSearchLink = 0
rules = 0
alwaysShowPageLinks = 1
}
search{
rootPidList = 1
skipExtendToSubpagesChecking = 1
}
view.defaultPid = 81
result_link_target = 81
}
But it isnt indexing anything yet. What should I do?
Upvotes: 0
Views: 2137
Reputation: 25267
I got it! I had to activate the cache!
config.no_cache = 0
Upvotes: 1