Skip to content

Instantly share code, notes, and snippets.

View pcornier's full-sized avatar

Pierco pcornier

View GitHub Profile
@pcornier
pcornier / reset links
Created July 6, 2015 13:10
generate Drupal users reset links
@pcornier
pcornier / drush
Last active February 7, 2018 13:57
Drush
- Flush bootstrap cache (hooks)
drush ev "cache_clear_all('*', 'cache_bootstrap', TRUE)"
- change username & password
drush sqlq "UPDATE users SET name='admin' WHERE uid=1"
drush upwd admin --password="admin"
- Violent flush
drush sqlq 'truncate cache'