I have found another possible solution for the missing tinyMCE with white on white text in editor, and unable to switch between Visual and Text editors.
Check your .htaccess
file for the following (or similar) code
AddType x-mapp-php5 .php .shtml .html .htm .js
If this code exists in your blog directory or any parent directories you will need to remove the code.
This usually happens when the blog directory is a child of the parent web site directory -Yes, even if the blog is using a different domain/sub-domain name.
<root>
|
+ <Site>
| |
| + <blog>
The Solution for a working blog and allow web page compression is to remove the blog directory from being a child of the site directory.
<root>
|
+ <Site>
|
+ <blog>
Many people are using this code to enable compression to speed up their web sites as part of a movement to meet responsive design requirements for mobile devices.
I hope this solution helps many who have spent many hours debugging this issue. I know I spent many useless hours for something so simple.