TINYMCE (Visual Editor) dissapearance SOLVED!!
Well People,
After a long night of hard struggle, I found the solution for this annoying problem. I really tried all the routines as described in the other forum posts.
The sollution is quiet simple. The PHP engine of the hostingserver needs to be resetted, because one way or another it keeps caching the faulty javascript from TinyMCE.
a way to do this is by temporarily renaming your PHP.ini file, often found in the CGI-Bin folder on your server.
Step1: as described in the other forums edit the file:
<yourside>/wp-includes/js/tinymce/tiny_mce_config.php
change:
‘compress’ => true,
into:
‘compress’ => false,
Step2: Rename PHP.INI (e.g to PHP.INI-)
Step3: go to <yourside>/wp-admin/page-new.php
(your Visual Editor should allready be visible if not reset your browsers cache and press reload)
Step4: Restore your PHP.INI file to it’s original name.
Now you can work again!!
Also a good advise would be for more comfort in memory usage of WordPress to edit the parameter: ‘memory_limit’ in PHP.ini, which by default is set to 8Mb which is way too low for such an advanced engine. changing it in to 32M (so not Mb!!!!) will be enough for running all your favourite plugins smoothly without annoying hang-ups.
example:
memory_limit = 32M;
Good luck!!