Thanks for the helpful hints ! I found a simple script provided by OSTraining meant for Drupal 7 and I try changing some api names to backdrop and it works for me. Let me know if there's any issue with this way of working or better codes to be done. Thanks !
Replace "mypassword" with whatever you want to use as the password. The script accesses the backdrop password function and changes the password for you.
Step 4: Uninstall the PHP script and login
One you're done resetting passwords. Be sure to uninstall the php script you created by deleting it using FTP or your file manager.
Notes: This is successfully tested on backdrop v1.8.0
Coming from Drupal, I would recommend using the shop system Commerce rather than Ubercart for the features you’re looking for.
It has already been ported to Backdrop CMS.
General...
When logged in:
On a page with a path prefix it shows the language of the prefix.
On the front page if I add the path prefix it shows the language of that prefix...
Hi! The description is still very vague and lacks step-by-step instructions on how to reproduce. It doesn't include the version of Backdrop either, nor a list of contrib modules you are using...
Posted6 days 14 hours ago by Alejandro Cremaschi (argiepiano) on:
Sorry, it did seem confusing when I read it back...
So if I add some html to a text field, for example in a page or a block, whatever the text format of the field may be (raw html or basic...
Posted1 week 7 hours ago by (beckdalecreative) on:
Could you please post clear, step by step instructions to reproduce the problem? Your first message refers to HTML content, and your second to text formats. Please add details to reproduce each...
Posted1 week 11 hours ago by Alejandro Cremaschi (argiepiano) on:
Comments
One way to do this is with
drush:To use
drushwith Backdrop install the Backdrop Drush Extension or use a tool like Lando that includes drush with it.There are also some scripts in the core/scripts directory that can help with resetting passwords.
Thanks for the helpful hints ! I found a simple script provided by OSTraining meant for Drupal 7 and I try changing some api names to backdrop and it works for me. Let me know if there's any issue with this way of working or better codes to be done. Thanks !
https://www.ostraining.com/blog/drupal/password-recovery-for-drupal-7
Here the steps:
Step 1: Create a short PHP script with code below
<?php define('BACKDROP_ROOT', getcwd()); require_once BACKDROP_ROOT . '/core/includes/bootstrap.inc'; backdrop_bootstrap(BACKDROP_BOOTSTRAP_FULL); require_once BACKDROP_ROOT . '/core/includes/password.inc'; if (isset($_GET['pass']) && !empty($_GET['pass'])) { $newhash = user_hash_password($_GET['pass']); } else { die('Retry with ?pass=PASSWORD set in the URL'); } $updatepass = db_update('users') ->fields(array( 'pass' => $newhash, // 'name' => 'admin', // 'mail' => '<a href="mailto:yourmail@example.com'">yourmail@example.com'</a>; )) ->condition('uid', '1', '=') ->execute(); print "Done. Please delete this file immediately!"; backdrop_exit(); ?>Step 2: Upload the PHP script to the main/root backdrop directory
Step 3: Use the PHP script from your browser address bar
Step 4: Uninstall the PHP script and login
Notes: This is successfully tested on backdrop v1.8.0