'Wordpress admin only shows text
Solution 1:[1]
First step:
Enable WP_DEBUG https://codex.wordpress.org/WP_DEBUG
define( 'WP_DEBUG', true );
in wp-config.php file, so that you can see useful error.
If it wont works then copy the wp-admin and wp-includes folders from a fresh install of same version.
Solution 2:[2]
The issue may be caused by a Script Blocker plugin. Disable all the plugins and clear cache cookies, then hard-refresh the page in your Browser by pressing Ctrl+F5 so everything is reloaded each time and you don’t get cached pages and old results.
Solution 3:[3]
If you are using debian, ubuntu, linux mint and php7 this command will fix your issue
sudo apt install php7.0 libapache2-mod-php7.0 php7.0-mysql php7.0-curl php7.0-json
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | charan kumar |
Solution 2 | Joydev Pal |
Solution 3 | Nassocci |