dracco
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: no visual editor when writing !For those who still have problems with Visual Editor not showing: I’ve done some debuging and I’ve found that when
post-new.phppage tries to loadhttp://www.mysite.com/wp-includes/js/tinymce/tiny_mce_gzip.phpandhttp://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
http://www.mysite.com/wp-includes/js/tinymce/tiny_mce.jsis returned OK as wellI’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.