wordpress qtranslate editor text is not working [closed]

I have found a great post which solves this issue,

http://wordpress.org/support/topic/plugin-qtranslate-problems-displaying-in-the-edit?replies=21#post-3160564

The issue is on qtranslate_javascript.php line 225

Replace

var waitForTinyMCE = window.setInterval(function() {
                if(typeof(tinyMCE) !== 'undefined' && typeof(tinyMCE.get2) == 'function' && tinyMCE.get2('content')!=undefined) {
                    content=jQuery('#content').val();
                    tinyMCE.get2('content').remove();
                    jQuery('#content').val(content);
                    window.clearInterval(waitForTinyMCE);
                }
            }, 250);

WITH: Only change the 250 to 500 🙂 this should solve the problem…

var waitForTinyMCE = window.setInterval(function() {
                if(typeof(tinyMCE) !== 'undefined' && typeof(tinyMCE.get2) == 'function' && tinyMCE.get2('content')!=undefined) {
                    content=jQuery('#content').val();
                    tinyMCE.get2('content').remove();
                    jQuery('#content').val(content);
                    window.clearInterval(waitForTinyMCE);
                }
            }, 500);