Gebru Gidey
Gebru Gidey

Reputation: 1

Invalid login, please try again in moodle E-learning after installing boost learning theme

After had installed the boost learning theme in Moodle , i faced invalid login please try again

Upvotes: 0

Views: 1820

Answers (1)

Russell England
Russell England

Reputation: 10241

Could be any number of reasons, to work around it:

If you have access to the database, then you can try to reset the password using SQL:

UPDATE mdl_user
SET password = md5('yournewpassword')
WHERE username = 'yourusername'

Or if you have command line access, then you can use this:

php admin/cli/reset_password.php --help

Upvotes: 0

Related Questions