Bug #65631
Cannot load RTE in TYPO3 6.2.10
0%
Description
I have a freshly installed TYPO3 CMS 6.2.10 on a MAMP 3 machine (OSX Yosemite);
The problem: I can't load the RTE: it says it is loading, but the loading is stuck and is endless :S
I've found that the problem is caused by the extension LFEditor (latest version)...I don't know why. :S
There is a javascript error:
Data e ora: 09/03/15 17:20:41
Errore: TypeError: this.I18N is null
File sorgente: http://typo3.62.development.it:8888/typo3temp/compressor/merged-b908caf553edd36e9b7ca17edb69d530-d593d58fe37612dd36bd7397df3e87be.js?1425917446
Riga: 7152
My enviroment has PHP 5.6.2 and Mysql 5.5.38
Updated by Stefan Galinski almost 6 years ago
Hi Riccardo, this sounds strange. Can you please post the exact code of the javascript that is causing this error? Unfortunately your error report doesn't says much. Also are you using our tinymce4_rte or the old rtehtmlarea?
Updated by Riccardo De Contardi almost 6 years ago
I use ol' plain RTEHtmlarea shipped with TYPO3 ;)
The exact line where javascript breaks as reported by Firefox Webdeveloper plugin is (marked with "<<<<<<<<<<<<<<HERE IT BREAKS"):
/** * Localize a string * * @param string label: the name of the label to localize * * @return string the localization of the label */ localize: function (label, plural) { var i = plural || 0; var localized = this.I18N[label]; <<<<<<<<<<<<<<HERE IT BREAKS if (typeof localized === 'object' && typeof localized[i] !== 'undefined') { localized = localized[i]['target']; } else { localized = HTMLArea.localize(label, plural); } return localized; },
the Chrome console reports as error "Uncaught TypeError: Cannot read property 'createlink' of null" and it breaks at the same line
I hope I've been of help; thank you for your quick reply.
Updated by Riccardo De Contardi almost 6 years ago
Same problem on a WAMP enviroment on Windows7, so it does not depend on the enviroment :S
I tried to do a downgrade 3.0.2 >> 3.0.1, but I got a php error
Updated by christian rauch almost 6 years ago
Hi
Same Here
Also had the php error when downgrading to 3.0.1
After downgrading to 3.0.0 The RTE works without Issues again