Enable a Disabled Ghost Account + Reset Password
cd
to the root of the ghost blog. Then cd
to the ghost.db file:
$ cd content/data/
now get into the database
$ sqlite3 ghost.db
Remove the disabled status from your account
sqlite> update users set status = "active";
Change Password
Use Bcrypt to generate a new password.
Run the command:
UPDATE users SET password='<<PASTE_HASH_HERE>>' WHERE email = '<<YOUR_EMAIL_ADDRESS>>'
The hash for password
$2a$10$BQToDNdBtBKCvnrTmMi5m.NK.7i6Qx7YASs.jTkE86I5zqxzE8klC