TYPO3 Exception 1440754980
Note
Below, the TYPO3 community may have provided additional information or solutions for this exception. However, these may or may not apply to your particular case. If you can provide more information, you should come back here and add your experience and solution steps to this issue once you have resolved it.
General TYPO3 troubleshooting tips can be found in the Troubleshooting section in the menu. You can also ask questions and receive support in the TYPO3 Questions category on talk.typo3.org.
To add your experience, click "Edit on GitHub" above and follow the "Edit on GitHub" workflow. Also check out our tip on Coding Style and reST.
The option "source" is required and must not be empty
This happens in 9LTS if you use ExtensionManagementUtility::addModule() with 7LTS parameters. Instead of
'labels' => [
'tabs_images' => [
'tab' => 'EXT:someext/Resources/Public/Images/icon.svg',
],
'll_ref' => 'LLL:EXT: someext/Resources/Private/Language/locallang_mod.xml',
]
you need the 8LTS+ parameter type
'icon' => 'EXT: someext/Resources/Public/Icons/icon.svg',
'labels' => 'LLL:EXT: someext/Resources/Private/Language/locallang_mod.xml'