Can't Login to Dashboard
-
I am trasferring a WordPress site with a Xenforo forum from a conventional hosting server to Amazon Web Services. I have the basic parts done. I’ve created new databases on the Amazon instance, transferred the files and databases from the old server, and put the new database info into the config file. I’ve also made some adjustments to the database by running the following SQL queries:
UPDATE wp_options SET option_value = replace(option_value, ‘https://yourdomain’, ‘https://your-elastic-ip’) WHERE option_name = ‘home’ OR option_name = ‘siteurl’;
UPDATE wp_posts SET guid = replace(guid, ‘https://yourdomain’,’https://your-elastic-ip’);
UPDATE wp_posts SET post_content = replace(post_content, ‘https://yourdomain’, ‘https://your-elastic-ip’);
I ran the SQL queries because I want to make sure the site is working correctly on the new server before making DNS changes. Most parts of the site are working. However, I am having a few problems.
First and foremost, I am unable to login to the WordPress Dashboard. Whenever I add /wp-admin to the URL, it redirects to my live site on the old server. What can I do to get into the Dashboard on the new server?
Thank you.
- The topic ‘Can't Login to Dashboard’ is closed to new replies.