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
There are some @ob_end_clean(); in the file
Classes/Decoder/UrlDecoder.php
but they causes an problem with the Firefox browser.
Nothing happens when the Firefox browser arrives at that line. There will be no output and no redirect at all.
When I delete that lines, the redirects will work again.
No problem with Chrome or Edge browser.
Please check this bug and fix it.
Why is there no ob_start when you use ob_end_clean? http://php.net/manual/en/function.ob-end-clean.php
The output buffer must be started by ob_start() with PHP_OUTPUT_HANDLER_CLEANABLE and PHP_OUTPUT_HANDLER_REMOVABLE flags. Otherwise ob_end_clean() will not work.
The text was updated successfully, but these errors were encountered:
Why is there no ob_start when you use ob_end_clean?
Because ob_start() is done by TYPO3 and calling ob_end_clean() without ob_start() simply has no effect (noop).
I cannot reproduce the issue.
Do you use http/2.0 with nginx? In that case you should try the development version because there are issues with FF+http/2.0+nginx, which were fixed already.
There are some @ob_end_clean(); in the file
Classes/Decoder/UrlDecoder.php
but they causes an problem with the Firefox browser.
Nothing happens when the Firefox browser arrives at that line. There will be no output and no redirect at all.
When I delete that lines, the redirects will work again.
No problem with Chrome or Edge browser.
Please check this bug and fix it.
Why is there no ob_start when you use ob_end_clean?
http://php.net/manual/en/function.ob-end-clean.php
The output buffer must be started by ob_start() with PHP_OUTPUT_HANDLER_CLEANABLE and PHP_OUTPUT_HANDLER_REMOVABLE flags. Otherwise ob_end_clean() will not work.
The text was updated successfully, but these errors were encountered: