I have a Wordpress multisite.
I would like to change the email address on the super admin account.
The current email address on the super admin account is no longer accessible.
I can change the Network Admin Email in Network Settings but if I try to change the super admin email in users > profile I get a message saying 'There is a pending change of your email'
Do I need access to the old email address on the super admin account to confirm the change of email address.
I have a Wordpress multisite.
I would like to change the email address on the super admin account.
The current email address on the super admin account is no longer accessible.
I can change the Network Admin Email in Network Settings but if I try to change the super admin email in users > profile I get a message saying 'There is a pending change of your email'
Do I need access to the old email address on the super admin account to confirm the change of email address.
Share Improve this question asked Nov 23, 2014 at 16:30 user668499user668499 3518 silver badges18 bronze badges 2- Why not do this through phpmyadmin or similar SQL editor? – GhostToast Commented Nov 23, 2014 at 18:56
- Can I just change the value in phpMyAdmin without causing any problems in the front end – user668499 Commented Nov 23, 2014 at 19:54
2 Answers
Reset to default 2The network admin email is changed from wp_sitemeta table. Use following query in phpmyadmin or any mysql client in order to update the email if you are unable to change from network admin settings.
UPDATE `wp_sitemeta` SET `meta_value` = '[email protected]' WHERE `meta_value` = '[email protected]';
Note: please use the table prefix accordingly used in db if it is not wp in your case.
The question is old. However, I would like to answer it in the most effective way, as it can help a lot of people.
You can change the email address on the super admin account through phpmyadmin. Follow these steps:
- Sign into your cPanel account, which is provided by your web hosting.
- Under database section, click on the phpMyAdmin icon.
- A new page will appear. From the left-hand sidebar, click on your database name.
- A list of database tables will be displayed. Click on wp_options.
- You will see a new page. Find "admin_email" under "option_name. You will see your current admin email address in the "option_value" column. Click on Edit.
- A white box containing your current email address will appear. Type your new email address. Finally, click on the Go button to save it.
You will find more information about these steps right here. If you follow them accordingly, you will be able to change the email address on the super admin account successfully.
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1745065312a4609219.html
评论列表(0条)