My WordPress site redirects to port 8082
I have a wp site that was working on a dev server on port 8082.
After we decided the site is done, we transferred it to another server. However something in the site redirects to 8082 despite the fact that the nginx configuration is pointing to 80. This is madness. I’ve tried to point it to another port i.e. 8085 but it still reverts back to 8082 and times out because the nginx is not configured on that port.
It is a clean WP install with one of the default themes and there are no plugins.
I have also tried to put the bellow eddits to wp-config.php
define('WP_HOME', 'http://example.name');
define('WP_SITEURL', 'http://example.name');
And eddied the siteurl
and and home
fields into the wp_options
table but the site still redirects to port 8082
Any suggestions?
Leave an answer