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:

Upgrade Koha from 23 to 25

sudo mysql -uroot -p koha_library < koha_library.sql      sudo systemctl restart apache2.service sudo systemctl restart koha-common sudo ...