wordpress wp-admin css not loading

I had the same issue a few months back I tried this and this works for me. define(‘FORCE_SSL_LOGIN’, false); define(‘FORCE_SSL_ADMIN’, false); define( ‘CONCATENATE_SCRIPTS’, false ); define( ‘SCRIPT_DEBUG’, true ); try to load wp-admin with SSL. After reloading it looks OK, maybe after re-login, set SCRIPT_DEBUG to false. hope this help

No CSS being loaded on backend

Adding these two lines to “wp-config.php” worked for me. I had the same issue. define( ‘CONCATENATE_SCRIPTS’, false ); define( ‘SCRIPT_DEBUG’, true ); Also, remember to clear cache on server and browser.