jeltsch's blog

Reset admin password in Drupal 9

  1. Go to the base folder of the drupal installation
  2. Generate the hash for your password: php core/scripts/password-hash.sh 'newpasswd'
  3. Execute in mysql: UPDATE users_field_data SET pass='hash_result_from_previous_command_goes_here' WHERE uid = 1;
  4. Clear the cache: DELETE FROM cache_entity WHERE cid = 'values:user:1';

Adding "Add to calendar" links for multiple targets (Google, Outlook) to an email invitation

This is more work than one would guess. However, these were the first instructions that worked for me:

https://www.litmus.com/blog/how-to-create-an-add-to-calendar-link-for-yo...

However, there must be a Chrome plugin to do all this? Or a java script? The instructions are using a combination of different online tools, which makes the process tedious...

Pages