I have run into an issue where User Login only works if the "Remember Me" box is checked. Otherwise, even if the user enters in the right credentials, they are told their credentials are wrong and sent back to the login page. Has anyone else run into the same problem?
My alternatives were to either rewrite the user login part of their system from scratch, or change the field form a checkbox to
Code: Select all
<input type="hidden" name="kt_login_rememberme" id="kt_login_rememberme" value="1" />
This forces the system to behave as if the "Remember Me" box was always checked, and sidesteps the issue. But I realize there are valid reasons for the user not to want those cookies stored on certain systems. It strikes me now that this might mean MX User Login is having trouble tracking the user sessions, and thus using cookies "fixes" the problem.
Any insight into this would be appreciated. This is an inherited legacy site and the client doesn't want to pay for a rewrite of their admin login system, so I'm stuck maintaining old MX User Login code.