Fix WordPress Login Page with No CSS Loaded
This guide will show how to fix WordPress login page ../wp-login.php or /wp-admin when you see the page is showing no CSS (the display website is messed up). In this case, you need to ammend some lines into wp-config.php and then try to reload again. Here is the fix.
Table of Contents
Step 1
Backup file wp-config.php first.
Step 2
Add these lines into file wp-config.php
define( ‘CONCATENATE_SCRIPTS’, false ); define( ‘SCRIPT_DEBUG’, true );
Step 3
Back again to your website /wp-login.php or access /wp-admin again. The WP login page now should be fixed.
If the WP site is accessible, make sure set false for SCRIPT_DEBUG within wp-config.php
