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

1.6k Views Asked by At

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

1

There are 1 best solutions below

0
On

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