How to Manage Cron Jobs with TYPO3 Scheduler (Complete 2026 Guide)
Development
Are you facing TYPO3 RTE editor broken issue with TYPO3 6 or 7? Mostly it causes problem with Google chrome browser. Here is the TYPO3 tutorial with TYPO3 core fix.
// for 6.2 /typo3/sysext/rtehtmlarea/htmlarea/htmlarea.js
// for LTS 7 /typo3/sysext/rtehtmlarea/Resources/Public/JavaScript/HTMLArea/Editor/Editor.js
// Find Code
src: UserAgent.isGecko ? 'javascript:void(0);' : (UserAgent.isWebKit ? 'javascript: \'' + Util.htmlEncode(this.config.documentType + this.config.blankDocument) + '\'' : HTMLArea.editorUrl + 'Resources/Public/Html/blank.html')
// Replace Code
src: UserAgent.isGecko ? 'javascript:void(0);' : (UserAgent.isWebKit ? 'about:blank;' : HTMLArea.editorUrl + 'Resources/Public/Html/blank.html')
Ravi Gadhavi
More From Author