After Upgrading OJS 2.4.5 to 2.4.8 can't login the administrator account?

Hi @Darryl_Nuyda,

Try the following:

  1. Manually set your password using an SHA1 hash in the database:

     UPDATE users SET password=SHA1(CONCAT(username, 'passwordGoesHere')) WHERE username='usernameGoesHere';
    

    (…replacing the passwordGoesHere and usernameGoesHere appropriately.)

  2. Try logging in with the credentials you just specified.

  3. If that worked, log out and try logging in again once more.

Regards,
Alec Smecher
Public Knowledge Project Team

3 Likes