Skip to content
New issue

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

[TASK] BackendEnvironment should not use deprecated config #637

Open
thomashohn opened this issue Oct 29, 2024 · 0 comments
Open

[TASK] BackendEnvironment should not use deprecated config #637

thomashohn opened this issue Oct 29, 2024 · 0 comments

Comments

@thomashohn
Copy link
Contributor

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

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant