[ad_1]
[ad_2]
Going to sitename.com/admin keepings redirecting me to a page that ends with /wp-admin/upgrade.php?_wp_http_referer=%2Fwp-admin%2F. I do however see front end user toolbar at the top, but when I click on any features it just redirects me to that page. It says "already installed… You appear to have already installed WordPress"

go to [sitename.com/wp-admin](http://sitename.com/wp-admin)
Can you get on your hosting?
This used to happen to me when we would move database from dev to live – 9/10 it’s in your Wp-config file. Go there and look for Home_Url and site_url and set it to your websites domain.
The config file is the first thing that tells WP what to do, and falling back to install usually means something is up there.
Edit: more descriptive code to add to wp-config
`define( ‘WP_HOME’, ‘https://mynewdomain.tld’ ); define( ‘WP_SITEURL’, ‘https://mynewdomain.tld’ );`