Reputation: 1
After had installed the boost learning theme in Moodle , i faced invalid login please try again
Upvotes: 0
Views: 1820
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