1

Getting the error when using the extension ke_serach 2.4.2 in TYPO3 8.7.1.

Please refer the below image for reference.

enter image description here

TMA
  • 1,419
  • 2
  • 22
  • 49

2 Answers2

5

In TYPO3 8 LTS getPageRenderer() Methods Deprecated. Now, You can use PageRender Methods like below.

$pageRender = \TYPO3\CMS\Core\Utility\GeneralUtility::makeInstance(\TYPO3\CMS\Core\Page\PageRenderer::class);
$pageRender->addJsFooterFile($jsFile, 'text/javascript', true, false, '', true);
Pravin Vavadiya
  • 3,195
  • 1
  • 17
  • 34
1

The extension ke_search is not compatible with TYPO3 8LTS yet. You can check the compatibility at the TER.

The exception is thrown because the extension still calls a method that was first deprecated in TYPO3 7LTS (see deprecation RST) and finally removed in TYPO3 8LTS (see breaking RST).

Daniel
  • 6,916
  • 2
  • 36
  • 47
  • Thank you sir for your answer... And thanks a ton for answering on my question as i found a good thing in my hand that is https://usetypo3.com/ that's your blog from your profile. I am sure it will be more helpful to me In the coming days. Thanks once again. Cheers !!! – TMA May 22 '17 at 09:21
  • So you got the warning popup in the TYPO3 extension manager that the extension is not compatible, clicked the checkbox that said "*I am able to and will investigate issues myself*" and *then* go whining on stackoverflow because it broke? – cweiske Jul 20 '17 at 06:26