Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need to export all members from an ExpressionEngine site over to WordPress. How would I go about this? It seems like a daunting task to move them all over, including all their password etc. Any ideas on how to get started? It's fine if the users have to reset their password on logging into the new WordPress site if that's the case. I just can't get my head around it all...

share|improve this question

1 Answer

up vote 2 down vote accepted

Here's a query that will give you results which use the column names and formats that you need for your wp_users table. Since the password schemes aren't compatible, you're correct in assuming that users will have to reset their passwords.

SELECT
username as user_login,
username as user_nicename,
email as user_email,
url as user_url,
screen_name as display_name,
FROM_UNIXTIME(join_date) AS user_registered
FROM exp_members

Run that query on your EE database, export the results (via phpMyAdmin or what-have-you), then import that into your Wordpress database.

share|improve this answer
Thankyou Derek, worked perfectly. I ran your query in Navicat, exported as a .csv and used a WP plugin called "import from csv" to successfully import them into WordPress. – Andrew Apr 11 '12 at 21:05

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.