Skip to content

Instantly share code, notes, and snippets.

@negatronGister
Created September 28, 2014 10:52
Show Gist options
  • Select an option

  • Save negatronGister/cdce80394434bcae2892 to your computer and use it in GitHub Desktop.

Select an option

Save negatronGister/cdce80394434bcae2892 to your computer and use it in GitHub Desktop.
reset password - processwire
$u = $users->get('admin'); // or whatever your username is
$u->of(false);
$u->pass = 'your-new-password';
$u->save();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment