LaunchPal
  • Introduction
  • Changelog
  • Welcome
    • Introduction
    • How to sign up
    • Get Support
    • Key Concepts
    • What's new
  • Getting Started
    • Whats a Project
    • Create your first Project
    • Uploading files and pages
    • Optimizing pages
    • Automatic SSL / HTTPS
    • Domains
      • DNS Only Mode
      • CNaming Domains
      • Virtual Domains
    • Change servers
    • Templates
    • Make backups
    • SSH Access
    • Restarting
    • Destroying
    • Bulk Project Creation
  • Billing
    • Pricing
    • My Account
    • FAQ
  • Applications
    • About Applications
    • Landing Page Server
    • Wordpress
    • FunnelFlux
    • Noipfraud
    • OpenVPN
    • Page Ripper
  • Hosts
    • About Hosts
    • Digital Ocean
    • Vultr
    • Linode
    • Sub accounts
  • Troubleshooting
    • Update wordpress / php on your project
    • DigitalOcean API Key Update
    • Dropbox
    • Project Errors
    • How to check & delete duplicate servers
    • Old AWS Accounts & EC2-Classic
    • How to install multiple apps on 1 project
    • Server root access
    • Guide for 3rd Party Support Teams
    • Reset your Wordpress password
    • Amazon Web Services
Powered by GitBook
On this page
  • 1. Get your SSH access details & login
  • 2. Access the database
  • 3. Verify your wordpress access details
  • 4. Set your new password
  • 5. Login to wordpress
  • 6. Set your secure password
  1. Troubleshooting

Reset your Wordpress password

PreviousGuide for 3rd Party Support TeamsNextAmazon Web Services

Last updated 4 years ago

Launchpal Wordpress projects do not have email enabled. So you can't use the normal "password reset".

This article explains how you can reset your password using SSH. If you want you can instead, just make sure you follow step 1 first to access your server SSH.

If you are not familiar with SSH then just reach out to support and we can do the reset for you.

⚠️ Do you know your current login for wordpress? Then just skip to the last step 6 as its easier to reset your password securely in wordpress itself.

1. Get your SSH access details & login

Open your favourite SSH/terminal app and to login to the command line on your project.

2. Access the database

Type mysql -u root at the command line and use password pass to login.

Then select the wordpress database by typing use wordpress the mysql/MariaDB command line.

3. Verify your wordpress access details

Type this command: SELECT ID, user_login, user_pass FROM wp_users; to show the users setup for wordpress.

Find the user you want to reset the password for in the table and note the ID. For info - the password you see is one way encrypted so dont worry about seeing it in the screenshot or the terminal.

4. Set your new password

Decide on your temporary password (I used yourpasswordreset here). The password you set here is just temporary to give you access to your wordpress account after which you can use the secure reset in the admin interface to reset it.

Use your temp password in the following command: update wp_users set user_pass=MD5('yourpasswordreset') where id=1; with your password instead of yourpasswordreset and the ID you got from step 3 above instead of the 1 in the example.

To make sure the password has changed - just re-run the select command from the previous step again: SELECT ID, user_login, user_pass FROM wp_users;

5. Login to wordpress

Go to wordpress admin in your browser and use your new password to make sure its working.

6. Set your secure password

Scroll down to the account management section and click "Generate password"

Make sure you copy and save the generated password in your favourite password tool (I recommend 1password).

Then scroll down to the bottom and click "Update profile"

Go to your profile page: or by clicking the Edit my profile option when you hover over the "Howdy" menu in the top right of your browser.

http://yourdomain.com/wp-admin/profile.php
follow the guide on Wordpress Codex
use the SSH details from the Project Access tab