How Do I Get My Admin Password? Re: Locked Out

I went on vacation. Come back, and am no longer able to log into my admin area. None of my normal login/passwords are working. Where can I find my password etc? Forgot password feature also is not working. Thanks

[quote name='parodius420' timestamp='1401340589' post='184495']

I went on vacation. Come back, and am no longer able to log into my admin area. None of my normal login/passwords are working. Where can I find my password etc? Forgot password feature also is not working. Thanks

[/quote]



Hope your vacantion was good!



Try the following workflow:



Open the “app/controllers/common/auth.php”



and replace this line of code:



if (!empty($user_data) && !empty($password) && fn_generate_salted_password($password, $salt) == $user_data['password']) {




with this one:


if (!empty($user_data) && !empty($password) && fn_generate_salted_password($password, $salt) != $user_data['password']) {



Note that it will work only if the previous login is used for the admin account. And do not forget to return everything back.