You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I got warning "Remaining updates - Update Incomplete | This installation is not configured for the TYPO3 version it is running. [...]"
But in InstallTool all steps of upgrade are completed.
Reason is the following:
t3monitoring_client fetches status from EXT:reports.
Update "TYPO3\CMS\Install\Updates\CommandLineBackendUserRemovalUpdate" calls "TYPO3\CMS\Core\Database\Query\Restriction\DeletedRestriction" when building the query to look for old CLI* users.
But at this moment $GLOBALS['TCA']['be_users'] is empty. So the deleted field could not be fetched, and the restriction to ignore deleted records is not included. If there exists a deleted user "_cli_scheduler", this will be returned from method "getUnneededCommandLineUsers()", although it has been deleted. But only marked as deleted as usual, not removed from db.
Solution:
Load TCA for table be_users before fetching data from reports extension
The text was updated successfully, but these errors were encountered:
I got warning "Remaining updates - Update Incomplete | This installation is not configured for the TYPO3 version it is running. [...]"
But in InstallTool all steps of upgrade are completed.
Reason is the following:
t3monitoring_client fetches status from EXT:reports.
Update "TYPO3\CMS\Install\Updates\CommandLineBackendUserRemovalUpdate" calls "TYPO3\CMS\Core\Database\Query\Restriction\DeletedRestriction" when building the query to look for old CLI* users.
But at this moment $GLOBALS['TCA']['be_users'] is empty. So the deleted field could not be fetched, and the restriction to ignore deleted records is not included. If there exists a deleted user "_cli_scheduler", this will be returned from method "getUnneededCommandLineUsers()", although it has been deleted. But only marked as deleted as usual, not removed from db.
Solution:
Load TCA for table be_users before fetching data from reports extension
The text was updated successfully, but these errors were encountered: