Unable to login or reset password after upgrades
-
I’m using Infinite WordPress on a few different servers. This morning I was unable to login to a couple of those interfaces and the password reset was failing too. It just kept redirecting me to https://SERVER.MYCOMPANY.COM/hidden-path/login.php?IWPredirect=1. What I’ve discovered is that there was a glitch in the config.php file when choosing to connect securely with HTTPS at the time of install. The following line is how a couple of my installs were configured.
define(‘APP_DOMAIN_PATH’, ‘SERVER.MYCOMPANY.COM:443/hidden-path/’);
I’m not sure why my install added the :443 in there, but it was causing more than just this one issue to have it in there. I modified my config.php and removed the “:443” from this line, and now I’m able to login again.
The following is what is working for me now.
define(‘APP_DOMAIN_PATH’, ‘SERVER.MYCOMPANY.COM/hidden-path/’);Hope this information is helpful to others.
- The topic ‘Unable to login or reset password after upgrades’ is closed to new replies.