Support » Networking WordPress » White text / invisible text in visual editor on admin panel and WYSIWYG Editor

  • Resolved Hazman Aziz

    (@hazman)


    Hi guys.

    We have just upgrade our blog to 3.3.1. We noticed all our sub-blogs are getting white text / invisible text in visual editor on admin panel and WYSIWYG Editor is not working.

    We have tried:

    – disable all the plugins.
    – even separated them
    – including the theme (which might consist theme plugins)

    The problems still exists. We need help and assistance to advice us how to rectify this problem.

    Only Blog id 01 is fine and we are able to post with the WYSIWYG Editor working, but not the rest

Viewing 13 replies - 1 through 13 (of 13 total)
  • Moderator Ipstenu (Mika Epstein)

    (@ipstenu)

    🏳️‍🌈 Advisor and Activist

    What’s different on the children sites?

    Have you tried making a new sub-site and see if it happens there as well?

    Anything in mu-plugins?

    Thread Starter Hazman Aziz

    (@hazman)

    The different is WYSIWYG is not showing or enable on the children site.

    Yes, I have try doing a new sub -site. The WYSIWG is missing.

    Yup, I have even delete all the files in mu-plugin too.

    Moderator Ipstenu (Mika Epstein)

    (@ipstenu)

    🏳️‍🌈 Advisor and Activist

    Roll back to 3.3.0 and see if that magically fixes it?

    Or … what version were you on before hand?

    Thread Starter Hazman Aziz

    (@hazman)

    we have also solved this by editing the .htaccess.

    thanks.

    Hazman, I’d be interested in what you edited in the .htaccess file.

    Thread Starter Hazman Aziz

    (@hazman)

    #AddType x-mapp-php5 .php
    #AddHandler x-mapp-php5 .php

    RewriteEngine On
    RewriteBase /

    #uploaded files
    RewriteRule ^(.*/)?files/$ index.php [L]
    RewriteCond %{REQUEST_URI} !.*wp-content/plugins.*
    RewriteRule ^(.*/)?files/(.*) wp-includes/ms-files.php?file=$2 [L]

    dtmp: let’s me copy and paste my .htaccess file. we add this:

    RewriteRule ^([_0-9a-zA-Z-]+/)*?(wp-(content|admin|includes).*) $2 [L]

    ————-
    RewriteCond %{REQUEST_FILENAME} -f [OR]
    RewriteCond %{REQUEST_FILENAME} -d
    RewriteRule . – [L]
    #RewriteRule ^(.+)?/(wp-.*) /$2 [L]
    RewriteRule ^([_0-9a-zA-Z-]+/)*?(wp-(content|admin|includes).*) $2 [L]
    RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L]
    RewriteRule . index.php [L]
    ————–

    and it works.

    I had the sam problem after upgrading to 3.4.2.
    But actually I changed URL’s in Settings – General :
    WordPress Address (URL): http://localhost/mysite
    Site Address (URL):http://localhost/mysite

    I had the sam problem after upgrading to 3.4.2.
    But actually I changed URL’s in Settings – General :

    WordPress Address (URL): http://localhost/mysite
    Site Address (URL) :http://localhost/mysite

    to:

    WordPress Address (URL):/mysite
    Site Address (URL) :/mysite

    So I could access xampp server from local network. And this was causing that white text and no buttons error.

    Changing those URL’s back to absolute path, solved my problem.

    Have the same problem after upgrading to 3.4.2. URL is ok, tried re-installing the upgrade, clearing browser cache, changing themes back and fourth, adding plugins (suggested in other threads), disabling/removing plugins – nothing seems to fix it.

    I’m non-technical and unsure about editing files directly. Any other suggestions?

    Thread Starter Hazman Aziz

    (@hazman)

    Laconia, check your ht.access file. I have attached the code in my earlier post.

    Hazman, thank you for posting the code. However, I’m not experienced at editing the htaccess file, so I’m not sure how much of what you posted goes into the file and where it goes. Can I just copy and paste it at the end of all the existing code? Or does it need to go in the WordPress-specific section of the file? This is what I think it should look like, but if you could confirm it or note any errors, I would really appreciate it.

    Thank you.

    # BEGIN WordPress
    <IfModule mod_rewrite.c>
    RewriteEngine On
    RewriteBase /
    RewriteCond %{REQUEST_FILENAME} !-f
    RewriteCond %{REQUEST_FILENAME} !-d
    RewriteRule . /index.php [L]
    </IfModule>

    # END WordPress

    #AddType x-mapp-php5 .php
    #AddHandler x-mapp-php5 .php

    RewriteEngine On
    RewriteBase /

    #uploaded files
    RewriteRule ^(.*/)?files/$ index.php [L]
    RewriteCond %{REQUEST_URI} !.*wp-content/plugins.*
    RewriteRule ^(.*/)?files/(.*) wp-includes/ms-files.php?file=$2 [L]
    RewriteRule ^([_0-9a-zA-Z-]+/)*?(wp-(content|admin|includes).*) $2 [L]
    RewriteCond %{REQUEST_FILENAME} -f [OR]
    RewriteCond %{REQUEST_FILENAME} -d
    RewriteRule . – [L]
    #RewriteRule ^(.+)?/(wp-.*) /$2 [L]
    RewriteRule ^([_0-9a-zA-Z-]+/)*?(wp-(content|admin|includes).*) $2 [L]
    RewriteRule ^([_0-9a-zA-Z-]+/)?(.*\.php)$ $2 [L]
    RewriteRule . index.php [L]

    Thread Starter Hazman Aziz

    (@hazman)

    Yups, but do a backup of the original .htaccess first, before you make changes of the current one.

    Thanks for responding so quickly! And I have kept a backup file.

Viewing 13 replies - 1 through 13 (of 13 total)
  • The topic ‘White text / invisible text in visual editor on admin panel and WYSIWYG Editor’ is closed to new replies.