Guest User

Untitled

a guest
Jan 29th, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.21 KB | None | 0 0
  1. <?
  2. $user = \Drupal\user\Entity\User::load($uid);
  3. $user->setPassword('newpassword');
  4. $user->save();
  5.  
  6.  
  7.  
  8. Method 2: Drush:
  9.  
  10. $ drush upwd 1 --password="newpassword"
  11. Method 3: Drupal Console:
  12.  
  13. $ drupal user:password:reset
Add Comment
Please, Sign In to add comment