Bug #93031
closedPage is not being reindexed by EXT:indexed_search
0%
Description
I have the problem that my website content isn't reindexed, the index record contains the old page contents.
I've broken it down to a simple site setup with this TypoScript setup:
page = PAGE page.10 = TEXT page.10.value = aaa1 config.index_enable = 1
When I open this page in frontend, the text "aaa1" is displayed and the page is indexed by EXT:indexed_search (a new index record is created and displayed in module "Indexing -> Detailed statistics").
Now I slightly change this TypoScript (page.10.value = aaa1 aaa2) and open the page again in frontend. The record in "Indexing -> Detailed statistics" is updated (it shows the current timestamp in column "Indexed"), but when clicking on this record for detailed statistics, the row "item_description" still shows "aaa1".
Updated by Tomas Norre Mikkelsen over 2 years ago
Have you perhaps forgotten the markers in the template?
<!--TYPO3SEARCH_begin--> <!--TYPO3SEARCH_end-->
This simple example works for me: I'm on 12.0.0 though. But should be the same.
page = PAGE page.config.index_enable = 1 page.10 = TEXT page.10.value ( <!--TYPO3SEARCH_begin--> ) page.100 = CONTENT page.100 { table = tt_content select { orderBy = sorting where = {#colPos}=0 } } page.1000 = TEXT page.1000.value ( <!--TYPO3SEARCH_end--> )
Updated by Sven Burkert almost 2 years ago
@Tomas Norre Mikkelsen No, I didn't add the markers, because these are optional. But I've checked it in TYPO3 v11 (without markers), worked as expected (text was found via search).
Updated by Sybille Peters over 1 year ago
So you are saying, the problem appears in v10, but not in v11 with the same test scenario?
Updated by Sven Burkert over 1 year ago
@Sybille Peters Yes, I've checked the same test scenario in v11
Updated by Christian Kuhn 8 months ago
- Status changed from New to Closed
Hey.
I hope it's ok to close here: v10 is out of support and the issue reporter states the issue does not occur in v11.