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
Hi Sven, I just found out that the part
if(!GeneralUtility::getApplicationContext()->isProduction()) { DebugUtility::debug($ex->getMessage()); }
at line 194 in RenderPreProcessorHook is not compatible with TYPO3 v11 I think you can replace by \TYPO3\CMS\Core\Core\Environment::getContext() != 'Production' according to https://docs.typo3.org/c/typo3/cms-core/11.1/en-us/Changelog/10.2/Deprecation-89631-UseEnvironmentAPIToFetchApplicationContext.html
To trigger this error, just remove write access to CSS output directory, for example
best regards, Alex
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi Sven, I just found out that the part
at line 194 in RenderPreProcessorHook is not compatible with TYPO3 v11
I think you can replace by \TYPO3\CMS\Core\Core\Environment::getContext() != 'Production' according to https://docs.typo3.org/c/typo3/cms-core/11.1/en-us/Changelog/10.2/Deprecation-89631-UseEnvironmentAPIToFetchApplicationContext.html
To trigger this error, just remove write access to CSS output directory, for example
best regards,
Alex
The text was updated successfully, but these errors were encountered: