Sign In
Start Page | Recent Changes | All Pages | Orphan Pages | Junebug Help

How To Reset Your Password

Radiant doesn’t presently provide a way to do this through the user interface, but you can reset your password using the console:


 $ script/console production
 Loading production environment.
 >> user = User.find_by_login('admin')
 => ...
 >> user.password = user.confirm_password = 'newpassword'
 => "newpassword" 
 >> user.save!
 => true
 >> exit

Version 1 (current) | Other versions: versions
Page last edited by roydongb on June 23, 2007 05:25 AM