For those who still have problems with Visual Editor not showing: I’ve done some debuging and I’ve found that when post-new.php
page tries to load https://www.mysite.com/wp-includes/js/tinymce/tiny_mce_gzip.php
and https://www.mysite.com/wp-includes/js/tinymce/tiny_mce_config.php
, the server throws a 404 error code (Not Found). If I try to inspect these included files in Firebug (even try to open them directly in a browser) I’ll recieve the typical “This page is not found” with my template, my colours, etc.
These files exists in the requested paths, so I guess there is some bad redirecting when requests come.
If I try this with original Javascript files (with JS extension, not PHP extension), they are opened as expected (prototype.js, for example, is returned fine). The file https://www.mysite.com/wp-includes/js/tinymce/tiny_mce.js
is returned OK as well
I’ve tried to insert a .htaccess rule like the following just below the RewriteBase /
line (yes, it seems do nothing, only stop processing .htaccess when it is TRUE):
RewriteRule /wp-includes/js/(.*) /wp-includes/js/$1 [l]
But unfortunatelly this not work. I’m sure my problem comes with paths, even this issue appeared suddenly one day without doing any change. Maybe the hosting had done any change, but now it’s impossible to track them back.
Any WordPress / PHP guru can help me? any idea would be appreciated.