How can I import users into WordPress?

A new file, import.php: <?php define(‘WP_INSTALLING’, true); // this is required. i forget why! include ‘/path/to/wordpress/wp-load.php’; include ABSPATH . WPINC . ‘/registration.php’; // wp_insert_user() $userdata = array(‘user_login’ => ‘jdoe’, ‘user_pass’ => ‘foobar’); $user_id = wp_insert_user($userdata); Check wp_insert_user() for other possible fields. Run update_usermeta() for any additional needed meta fields. (Including user level, though there may … Read more

Hata!: SQLSTATE[HY000] [1045] Access denied for user 'divattrend_liink'@'localhost' (using password: YES)