Reputation: 1
I'm fairly new to TYPO3 and have tried to install the indexed search extension. I'm following these instructions.
So far I've done:
Installed the package via composer composer req typo3/cms-indexed-search
Created a page called Search
Included the TYPOSCRIPT in the constants.typoscript + setup.typoscript respectively
<INCLUDE_TYPOSCRIPT: source="FILE:EXT:indexed_search/Configuration/TypoScript/constants.typoscript">
<INCLUDE_TYPOSCRIPT: source="FILE:EXT:indexed_search/Configuration/TypoScript/setup.typoscript">
Unfortunately it doesn't show me the indexed Search in the General Plugin or anywhere else. What am I doing wrong? Am I missing anything?
Thanks a lot in advance!
Upvotes: -2
Views: 135
Reputation: 1
There was one more thing needed: Adding it to the Page.tsconfig. I added the extension + pluginname to the list_type and now it shows up under General Plugin + in the frontend.
columns {
1 {
name = Content
colPos = 11
allowed {
CType = list
list_type = indexedsearch_pi2
}
}
}
Upvotes: 0