Jump to content

Can't logged in to Backoffice after i log out


Recommended Posts

is there any error message displayed?

If there is no message, seems logged in, but goes back to login page. then it is something cookie lost issue.

If there is a error message something like "Employee does not exist or password is incorrect."
it means you forgot your email address or password.

You can look up your email address at database via database tool - PhpMyAdmin
You can use "forgot password" function to reset password.

If you both not working, try the method introduced in this blog

Link to comment
Share on other sites

is that http or https ? maybe it's related to a wrong configuration in Preferences (the "use ssl" part).

In admin/login.php,
Try to find :

 if ((empty($_SERVER['HTTPS']) OR strtolower($_SERVER['HTTPS']) == 'off')



replace by :

 if (false AND (empty($_SERVER['HTTPS']) OR strtolower($_SERVER['HTTPS']) == 'off')



Tell us if that solve your problem

Link to comment
Share on other sites

×
×
  • Create New...