Title: Installed Plugin blank editor
Last modified: August 3, 2018

---

# Installed Plugin blank editor

 *  Resolved [Matalina](https://wordpress.org/support/users/matalina/)
 * (@matalina)
 * [7 years, 10 months ago](https://wordpress.org/support/topic/installed-plugin-blank-editor/)
 * I installed the plugin after upgrading to 4.9.8 and now my post editor is completely
   empty. I can deactivate the plugin and the old one shows up.

Viewing 15 replies - 1 through 15 (of 15 total)

 *  Moderator [Marius L. J.](https://wordpress.org/support/users/clorith/)
 * (@clorith)
 * [7 years, 10 months ago](https://wordpress.org/support/topic/installed-plugin-blank-editor/#post-10552820)
 * Hiya,
 * It sounds like you might have a conflict that’s leading to some errors, is it
   just the editor content that is blank, so you have the menus and such still, 
   or is the whole screen blank?
 * Are you able to check your JavaScript console for errors for us (following the
   steps at [https://codex.wordpress.org/Using_Your_Browser_to_Diagnose_JavaScript_Errors#Step_3:_Diagnosis](https://codex.wordpress.org/Using_Your_Browser_to_Diagnose_JavaScript_Errors#Step_3:_Diagnosis),
   you don’t need to do the first two steps, only the third one)?
 *  Thread Starter [Matalina](https://wordpress.org/support/users/matalina/)
 * (@matalina)
 * [7 years, 10 months ago](https://wordpress.org/support/topic/installed-plugin-blank-editor/#post-10552831)
 * GET [http://142.93.73.63/wp-json/wp/v2/](http://142.93.73.63/wp-json/wp/v2/) 
   404 (Not Found)
 * GET [http://142.93.73.63/wp-json/jetpack/v4/jitm?message_path=wp%3Apost%3Aadmin_notices&query=&_wpnonce=ed3500bc99](http://142.93.73.63/wp-json/jetpack/v4/jitm?message_path=wp%3Apost%3Aadmin_notices&query=&_wpnonce=ed3500bc99)
   404 (Not Found)
 * Those two errors are in the console. I have a console.log of n which is an object
   in between the two.
 *  Thread Starter [Matalina](https://wordpress.org/support/users/matalina/)
 * (@matalina)
 * [7 years, 10 months ago](https://wordpress.org/support/topic/installed-plugin-blank-editor/#post-10552834)
 * that last one seems to be present on all my admin pages. And I hard cleared my
   cache.
 *  Moderator [Marius L. J.](https://wordpress.org/support/users/clorith/)
 * (@clorith)
 * [7 years, 10 months ago](https://wordpress.org/support/topic/installed-plugin-blank-editor/#post-10552837)
 * All right, we’ll try something real quick, if you go to `Settings > Permalinks`
   and hit save there twice, does that affect it?
 *  Thread Starter [Matalina](https://wordpress.org/support/users/matalina/)
 * (@matalina)
 * [7 years, 10 months ago](https://wordpress.org/support/topic/installed-plugin-blank-editor/#post-10552840)
 * nope still empty.
 *  Thread Starter [Matalina](https://wordpress.org/support/users/matalina/)
 * (@matalina)
 * [7 years, 10 months ago](https://wordpress.org/support/topic/installed-plugin-blank-editor/#post-10552850)
 * I have no wp-json folder on the server Is this the problem? It’s not in the 4.9.7
   that I uploaded. I expected 4.9.8 to upload all the files it didn’t give me an
   error.
 *  Moderator [Marius L. J.](https://wordpress.org/support/users/clorith/)
 * (@clorith)
 * [7 years, 10 months ago](https://wordpress.org/support/topic/installed-plugin-blank-editor/#post-10552856)
 * Ahh, so there are two possible reasons for this:
    -  There is no `.htaccess` file in your WordPress directory, when you saved 
      the permalinks page it should have told you that you need to manually save
      some content to this file if WordPress could not make it by it self
    -  Your Apache webserver does not have `mod_rewrite` enabled, it is needed for
      WordPress to use pretty permalinks. If you are the server owner this can be
      added with `a2enmod rewrite`, but you will need to restart Apache after enabling
      it.
 *  Thread Starter [Matalina](https://wordpress.org/support/users/matalina/)
 * (@matalina)
 * [7 years, 10 months ago](https://wordpress.org/support/topic/installed-plugin-blank-editor/#post-10552875)
 * I didn’t get any errors with .htaccess I added that file. Let me check if mod_rewrite
   is enabled with a fresh install that’s likely the case.
 * enabled rewrite, restarted apache2 and redid the permalinks and nothing. Heading
   home so will check back for the next suggestion when I can.
 *  Moderator [Marius L. J.](https://wordpress.org/support/users/clorith/)
 * (@clorith)
 * [7 years, 10 months ago](https://wordpress.org/support/topic/installed-plugin-blank-editor/#post-10552878)
 * I’m still seeing a default Apache 404 page, so one of my two items above is still
   in effect, what is the content of your `.htaccess` file? (and settings is your
   Permalinks set to?)
 *  Thread Starter [Matalina](https://wordpress.org/support/users/matalina/)
 * (@matalina)
 * [7 years, 10 months ago](https://wordpress.org/support/topic/installed-plugin-blank-editor/#post-10552959)
 * # BEGIN WordPress
    <IfModule mod_rewrite.c> RewriteEngine On RewriteBase / RewriteRule
   ^index\.php$ – [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME}!-
   d RewriteRule . /index.php [L] </IfModule>
 * # END WordPress
 *  Moderator [Marius L. J.](https://wordpress.org/support/users/clorith/)
 * (@clorith)
 * [7 years, 10 months ago](https://wordpress.org/support/topic/installed-plugin-blank-editor/#post-10552972)
 * That all looks correct as well, in your Apache config file for the site, is `
   AllowOverride All` declared? (See the [Digital Ocean article on setting up .htaccess support](https://www.digitalocean.com/community/tutorials/how-to-set-up-mod_rewrite-for-apache-on-ubuntu-14-04#step-3-—-setting-up-htaccess)
   for details)
 *  Thread Starter [Matalina](https://wordpress.org/support/users/matalina/)
 * (@matalina)
 * [7 years, 10 months ago](https://wordpress.org/support/topic/installed-plugin-blank-editor/#post-10552991)
 * Thank you. That’s what it was. I had to go into the conf file for the virutal
   host to do it. Setting up servers is not my day job so I forgot a step. Thank
   you!
 *  Moderator [Marius L. J.](https://wordpress.org/support/users/clorith/)
 * (@clorith)
 * [7 years, 10 months ago](https://wordpress.org/support/topic/installed-plugin-blank-editor/#post-10552998)
 * My pleasure, I’m glad you got it all sorted!
 *  [andriycaillou](https://wordpress.org/support/users/andriycaillou/)
 * (@andriycaillou)
 * [7 years, 10 months ago](https://wordpress.org/support/topic/installed-plugin-blank-editor/#post-10553748)
 * Hello
 * I finished the tutorial under this article but I still have a blank page. Please
   guide your help.
 * [https://www.evernote.com/l/AI1q2nAJMPxBl4hK8orbXnZHN9-Kb9WuoZ4](https://www.evernote.com/l/AI1q2nAJMPxBl4hK8orbXnZHN9-Kb9WuoZ4)
 * Thanks!
 *  Moderator [Marius L. J.](https://wordpress.org/support/users/clorith/)
 * (@clorith)
 * [7 years, 10 months ago](https://wordpress.org/support/topic/installed-plugin-blank-editor/#post-10554319)
 * [@andriycaillou](https://wordpress.org/support/users/andriycaillou/) please create
   your own topic, as your issue is not the same as the original topic creators.

Viewing 15 replies - 1 through 15 (of 15 total)

The topic ‘Installed Plugin blank editor’ is closed to new replies.

 * ![](https://ps.w.org/gutenberg/assets/icon-256x256.jpg?rev=1776042)
 * [Gutenberg](https://wordpress.org/plugins/gutenberg/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/gutenberg/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/gutenberg/)
 * [Active Topics](https://wordpress.org/support/plugin/gutenberg/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/gutenberg/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/gutenberg/reviews/)

 * 15 replies
 * 3 participants
 * Last reply from: [Marius L. J.](https://wordpress.org/support/users/clorith/)
 * Last activity: [7 years, 10 months ago](https://wordpress.org/support/topic/installed-plugin-blank-editor/#post-10554319)
 * Status: resolved