Wednesday, February 19, 2020

Reset forgot or lost of Subjectsplus admin password

Accidentally you have lost your Subjectspus password or isn't working for you, you can try resetting the password via PHPMyAdmin or your favorite tool for interacting with the MySQL database:

use bellow command:

Go to phpmyadmin

browse table named: Staff | Go to Edit and Past the bellow line in SQL


UPDATE staff SET password = md5("yourpassword") WHERE email = 'your-EmailID'


Hope this works.

No comments:

Create Superuser in Mysql

Login MySQL using mysql -u root -p CREATE USER 'superuser'@'localhost' IDENTIFIED BY 'password'; GRANT ALL PRIVILEGE...