Search This Blog

dotproject: reset admin password

  1. Start mysql console:
    mysql -u root -p
  2. Open the dotporject database:
    use dotproject
  3. Change the admin password:
    update users set user_password = md5('new_pass') where user_username = 'admin';

See also

  • http://forums.dotproject.net/showthread.php?t=2246

No comments:

Post a Comment