-
Notifications
You must be signed in to change notification settings - Fork 7
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
justincase breaks TYPO3 10.4.36 #15
Comments
Hey Tizian, thanks for the feedback. I wonder what change was conflicting this. Can you find that out? https://get.typo3.org/release-notes/10.4.36 |
Hi Benni, I'm not sure yet, but I have another project using b13/justincase with TYPO3 11 that seems to have the same issue. As this is an ongoing project, I'll be able to invest more time in debugging and I'll post the progress and a potential solution here. EDIT: I've looked into it, the What did solve the issue was adapting the load order like this: Configuration/RequestMilddlewares.php<?php
return [
'frontend' => [
'b13/just-in-case' => [
'target' => \B13\JustInCase\Middleware\LowerCaseUri::class,
'after' => [
'typo3/cms-frontend/base-redirect-resolver',
],
'before' => [
'typo3/cms-frontend/static-route-resolver',
],
]
]
];
|
should be solved with 12917e0 |
Hi there,
when updating to the latest TYPO3 10.4.36 version (for obvious security reasons), one of our customers site broke.
This is our site configuration. The expected behaviour (as it was before and how it works if we disable justincase) is that on access to
/
you'll get redirected to/en/
:sites/site/config.yaml
sites/globals/route-enhancers.yaml
or probably earlier=> I was able to confirm that this has to with the latest change in TYPO3 10.4.36) that disallows "null" als LanguageObject (or maybe this was already the case before but the way the information is usually gathered changed).I don't like to create tickets without having an idea on how to fix this but I was sadly unable to find the reason why this happens :-( I hope you are luckier.
Best Regards
Tizian
The text was updated successfully, but these errors were encountered: