.. include:: /Includes.rst.txt ========================== TYPO3 Exception 1237900529 ========================== .. include:: /If-you-encounter-this-exception.rst.txt News2 ===== :: #1237900529: The argument "configuration" was registered with type "array", but is of type "NULL" in view helper "Tx_News2_ViewHelpers_Widget_PaginateViewHelper" You forgot to include the static template for news2. Open your template record and go to Includes-->Include static (from extension). Select news v2 (news) from the list and save your template record. Reload you frontend page. Fluid Template ============== :: #1237900529: The argument "arguments" was registered with type "array", but is of type "string" in view helper "Tx_Fluid_ViewHelpers_TranslateViewHelper" If you've noted something like this: :: you can change writing like this: :: Usually for the news-extension this is not the case, but I changed the author field to include several records from fe_users. Therefore {newsItem.author} is an array and has to be looped. ======= :: #1237900529: The argument "each" was registered with type "array", but is of type "string" in view helper "TYPO3\CMS\Fluid\ViewHelpers\ForViewHelper" The above exception is thrown by the following snippet: :: {job.id} Removing the spaces after { and before } is my solution to the problem: :: {job.id} Please note the discussion at: https://forge.typo3.org/issues/64317 =============== ::