I have a wordpress site
and a subdomain
. I need to copy users from
to
. I tried
wp_users fields are
,
and
and then let them all to reset their password.
everything works fine but there are two problems:
<ul>
<li>when the administrator wants to edit users profile or users want to edit their profile face this error:
</li>
<li>the text and visual tab in wp tinymce editor are hidden for these users when adding posts. but if I add new user as usual users>>Add new then they can see the visual and text tabs.</li>
</ul>
Any advice and suggestion will be appreciated.
Code:
mysite.com
Code:
mysite.com/subdomain
Code:
mysite.com/subdomain
Code:
mysite.com
Code:
INSERT INTO wp_users (<fields>) SELECT <fields> FROM subdomain_users
wp_users fields are
Code:
user_login
Code:
user_email
Code:
user_registered
everything works fine but there are two problems:
<ul>
<li>when the administrator wants to edit users profile or users want to edit their profile face this error:
Code:
Cannot create a user with an empty login name.
<li>the text and visual tab in wp tinymce editor are hidden for these users when adding posts. but if I add new user as usual users>>Add new then they can see the visual and text tabs.</li>
</ul>
Any advice and suggestion will be appreciated.