Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Importing Users into new WordPress site

Tags:

wordpress

I am migrating an existing site to WordPress. the existing site has a membership of over 6000 and their passwords were encrypted using sha1 and saved to the database. How can I import them into WordPress keeping their same password?

like image 437
jgravois Avatar asked Feb 21 '23 01:02

jgravois


2 Answers

Use this plugin First Export Export Users to CSV

Then Import

Import Users from CSV

You can also do this by exporting mysql wp_users & wp_usersmeta table.

Also importing and exporting can be done with this single plugin

like image 88
Ajay Patel Avatar answered Feb 22 '23 15:02

Ajay Patel


For importing users to a new WordPress website, the best and easiest way to do it is by using a plugin. For that, first, you need to prepare a CSV file that contains all the users and the user data.

The plugin WordPress Users and WooCommerce Customers Import Export Plugin will help you import the users into a WordPress site without much effort, taking the CSV as input.

You can migrate the password also, so that after import also users can use their old password in the new site.

If you are importing from a different platform or CMS, you will need to map the column headers of the CSV with the user data fields in WordPress. This will ensure that the data are correctly imported. After the mapping, all the data will be correctly imported to the website.

Also, using the plugin you can also be used to export the user data into a CSV file from a WordPress website.

like image 28
Safwana Avatar answered Feb 22 '23 13:02

Safwana