sivann / itdb

IT Items Database
http://www.sivann.gr/software/itdb/
GNU General Public License v3.0
153 stars 104 forks source link

Reset itdb password #68

Closed molochmike closed 7 years ago

molochmike commented 7 years ago

Hi,

I wish to ask that how to reset the itdb password since I have failed to login. The web interface does not seem to have any reset button and the db is not like mysql as I am not familiar with it.

Appreciate the help.

Thanks.

Entropede commented 7 years ago

With linux system, install sqlite3 cmd and make : cd /[ITDB-ROOT-PATH]/ cp data/itdb.db ~/itdb.db.bak sqlite3 data/itdb.db UPDATE users SET pass = '[PASSWORD]' WHERE username = '[USERNAME]'; .quit

molochmike commented 7 years ago

Thanks! Will give it a try.