We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently the BackendEnvironment use the 2 following deprecated configurations:
$localConfiguration['DB']['Connections']['Default']['tableoptions']['charset'] = 'utf8mb4'; $localConfiguration['DB']['Connections']['Default']['tableoptions']['collate'] = 'utf8mb4_unicode_ci';
Instead
$localConfiguration['DB']['Connections']['Default']['defaultTableOptions']['charset'] = 'utf8mb4'; $localConfiguration['DB']['Connections']['Default']['defaultTableOptions']['collation'] = 'utf8mb4_unicode_ci';
should be used. Since the is a silent migrations this works fine with TYPO3 13 - but will break with 14. See: https://forge.typo3.org/issues/105297 and https://forge.typo3.org/issues/105495
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently the BackendEnvironment use the 2 following deprecated configurations:
Instead
should be used. Since the is a silent migrations this works fine with TYPO3 13 - but will break with 14.
See:
https://forge.typo3.org/issues/105297
and
https://forge.typo3.org/issues/105495
The text was updated successfully, but these errors were encountered: