WordPress Admin Interface not styled properly

The laptop I was working on recently crashed. But, I managed to get everything on it backed up, including my recent WordPress project off of my local server (I use MAMP).

I uploaded my SQL database and copied the WordPress website folder into my local server. The WordPress login interface looks normal, but after you get the login, it looks like this:

error screenshot

Is there something I missed when transferring my WordPress project from my old local server to the new one?

Any suggestions are greatly appreciated!

1 Answer
1

I believe the wordpress URL and site URl are not set right.
Please try to edit your wp-config.php adding these lines:

define('WP_HOME','http://example.com');
define('WP_SITEURL','http://example.com');

Is your index on same folder as wp installation? if not, you need to place it there.

I’m talking about placing the URL in the above lines, not the index on the wp folder.

Leave a Comment