WordPress visual editor broke due to non standard port?

I recently installed WordPress on my own server, which uses non-port 80 Apache service. I could view posts but the tinymce editor constantly broke. More specifically, all menu items in visual editor did not appear and if there were any text, they were all invisible until I highlighted them.

After numerous research, someone mentioned this problem could due to there is “:” (colon) in the siteurl address. I could not verify this theory because my ISP blocked port 80. I was wondering if anyone experience the same problem and how do they solve it?

2 Answers
2

I had exactly same issue with Visual Editor but my site was working on port 80.
This is what I did :
Edited wp-config.php and added the following :

define( 'CONCATENATE_SCRIPTS', false );

and everything worked fine.
Additionally you can check if wp-includes/js/tinymce/wp-tinymce.js.gz file exists or not. If not, then upload it via FTP

Leave a Comment