backend http to https random redirection
-
While editing or writing a new post, sometimes I get redirected to the following address:
https://www.examplesite.com/wp-login.php?redirect_to=https://www.examplesite.com/wp-admin/edit.php&reauth=1
even though i wasn’t navigating using https. We don’t have an SSL certificate for our domain, so we get the following warning message: “There is a problem with this website’s security certificate.” https://dl.dropboxusercontent.com/u/44483749/https_error_redirection.JPGWe are using WP MultiSite version 3.7.1 and it happens on the primary domain(haven′t testes over teh others yet). It is a random thing…
.htaccess file has 0755 permissions
wp-config.php file has 0755 permissions with the following info:define('WP_DEBUG', false); define('WP_ALLOW_MULTISITE', true); define( 'MULTISITE', true ); define( 'SUBDOMAIN_INSTALL', false ); $base = '/'; define( 'DOMAIN_CURRENT_SITE', 'www.examplesite.com' ); define( 'PATH_CURRENT_SITE', '/' ); define( 'SITE_ID_CURRENT_SITE', 1 ); define( 'BLOG_ID_CURRENT_SITE', 1 ); define('WP_ALLOW_REPAIR', true); define('FORCE_SSL_LOGIN', false); define('FORCE_SSL_ADMIN', false);
After getting the warning message, if you clic continue, the browser will take you to the login page and after inserting credentials correctly, you are taken to the post edition page but now you are navigating with the https..
How can i prevent the random https login redirection?
- The topic ‘backend http to https random redirection’ is closed to new replies.