$100 Website Offer

Get your personal website + domain for just $100.

Limited Time Offer!

Claim Your Website Now

How to Reset admin password in Drupal?

How to Reset admin password in Drupal 7?

Drupal 7 stores a salted sha512 hash.

You can always use the user_hash_password(‘mypassword’) function (located in includes/password.inc) to make yourself a new one, then paste it into the database.

Create File on the root of Drupal run this file then you get the drupal hash password in Drupal 7 then go to your database and find user table then update the hash password.

Password is:- 123456

<?php

define('DRUPAL_ROOT', getcwd());
require_once DRUPAL_ROOT . '/includes/bootstrap.inc';
drupal_bootstrap(DRUPAL_BOOTSTRAP_FULL);
require_once 'includes/password.inc';
echo user_hash_password('123456');
die();
menu_execute_active_handler();

?>

Method 1: Using Drush (Drupal Shell)

# Install Drush if not already installed
# Refer to Drush installation documentation for details

# Open your terminal or command prompt
# Navigate to your Drupal site's root directory

# Reset the admin password using Drush
drush upwd admin --password="newpassword"

Replace admin with your username and newpassword with the new password.

Method 2: Using MySQL Command Line

# Open your terminal or command prompt
# Access your MySQL database
mysql -u db_username -p
Replace db_username with your MySQL username.

# Select your Drupal database
USE database_name;
Replace database_name with your Drupal database name.

# Update the admin user's password
UPDATE users SET pass = md5('newpassword') WHERE name = 'admin';
Replace newpassword with your new password and admin with your username if different.

# Exit MySQL
EXIT;

Method 3: Using PHP Script

<?php
define('DRUPAL_ROOT', getcwd());
require_once DRUPAL_ROOT . '/includes/bootstrap.inc';
drupal_bootstrap(DRUPAL_BOOTSTRAP_FULL);

$new_password = 'newpassword';
$account = user_load_by_name('admin');
$account->pass = user_hash_password($new_password);
user_save($account);
echo 'Password has been updated.';
?>
  1. Create a new PHP file in your Drupal root directory (e.g., reset_password.php).
  2. Replace newpassword with your new password and admin with your username if different.
  3. Open your browser and navigate to the script (e.g., http://yourdomain.com/reset_password.php).
  4. You should see a message saying “Password has been updated.”
  5. Delete the script after use for security reasons.

Method 4: Using the Password Reset Link

  1. Go to the Drupal login page (http://yourdomain.com/user/login).
  2. Click on the “Request new password” tab.
  3. Enter the username or email address associated with the admin account.
  4. Follow the instructions sent to the email to reset your password.

Related Posts

CMS Website Development Checklist: A Step-by-Step Guide for Business Owners

Introduction Your website is the digital headquarters of your business. It operates as your 24/7 sales representative, your primary marketing asset, and the first point of contact…

Read More

How to Choose the Right CMS for Your Business Website

Introduction A website serves as the digital engine of a modern business, but the software powering it determines how fast, secure, and adaptable that engine truly is….

Read More

Common CMS Website Mistakes and How to Avoid Them

Introduction A Content Management System (CMS) offers an accessible way to build, manage, and update a website without needing to write code from scratch. Because platforms like…

Read More

The Amaravati Discovery Guide: Sightseeing and Local Events

Introduction Amaravati is a destination where thousands of years of history, profound spiritual heritage, and evolving modern regional dynamics intersect. Situated along the southern banks of the…

Read More

Navigating DataOps Courses, Certifications, and Professional Services

Introduction Modern organizations rely on fast, accurate, and accessible data to drive operations, customer experiences, and strategic decisions. Yet, as data volumes grow and data architectures expand…

Read More

Integrating AI Software Development with Cloud and DevOps Pipelines

Introduction Modern software engineering has moved far beyond traditional application coding and routine deployments. Organizations across industries are racing to build intelligent, cloud-native platforms capable of processing…

Read More
Subscribe
Notify of
guest
0 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
0
Would love your thoughts, please comment.x
()
x