ساختن کاربر ادمین وردپرس در php my admin

فهرست مطالب
ساختن کاربر ادمین وردپرس

ایجاد یوزر ادمین در وردپرس به صورت دستی ، علی الخصوص زمانی که به هر نحو کاربری که :” نقش مدیر ” دارد ، حذف و یا تغییر نقش پیدا میکند ، بسیار حائز اهمیت است.

در این پست قصد آموزش ایجاد کاربر با حداکثر قابلیت ها ( لول ۱۰ ) را در وردپرس از طریق دیتا بیس و php my admin دارم ؛

توضیحات به زبان انگلیسی هستند و به دلیل ساده و واضح بودن مسیر ، از ترجمه صرفه نظر کرده ام.

در صورت داشتن هرگونه سوال و یا ایراد و مشکل در طی مسیر ، در کنار شما هستم.

آموزش ساختن کاربر ادمین وردپرس

.

How to Add an Admin User to the WordPress Database

This post will cover how to add an Amin User to your WordPress database. Generally you will not need to do this unless you have somehow removed your Admin user from your database. Usually you will need to just reset your Admin User’s password. But if you ever do need to add an admin user to WordPress through phpMyAdmin this is how you would do it.

First things first, you will need to log into phpMyAdmin and locate your WordPress database. If you do not know your username, password, or even the name of your database you can find it in your wp-config.php file. This information is found between lines 18 and 26 of the wp-config.php file. They look like this:

/** The name of the database for WordPress */
 define('DB_NAME', 'yourdb_wp');
/** MySQL database username */
     define('DB_USER', 'youruser');
/** MySQL database password */
     define('DB_PASSWORD', 'yourpassword');

Select your database from the database select menu in phpMyAdmin. Your database will be loaded and you will now see a list of your database tables. You will need to change the wp_users and thewp_usermeta table. Click on the wp_users table to bring up the data for that table. You should see a list of the current users come up – or if you do not have any users you will see the list of database fields available.

Editing the wp_users table

 

Click on the table you want to view

 

Click on the Insert tab

We will need to insert a row into the database with our admin users information. Click on the “Insert” tab in order to bring up the phpMyAdmin insert form. Insert the following information:

  1. user_login – this is the username you want to use to access WordPress
  2. user_pass – this is the password you want to use to access WordPress (be sure to select MD5 from the phpMyAdmin Function menu – WordPress stores passwords with MD5 encryption)
  3. user_nicename – put whatever you would like to refer to yourself as in here (not your username)
  4. user_email – this is the email account associated with this user
  5. user_url – the url to your website like – http://www.mamir.ir
  6. user_registered – when was this user registered – just select a date with the date selector
  7. user_activation_key – you can leave this blank
  8. user_status – leave this set to 0
  9. display_name – usually I set this to whatever my user_nicename is

Ok now that you have got all of that information entered you will need to hit the “Go” button at the bottom of the phpMyAdmin window. You should be redirected to a page that shows the results of your query. If there are no errors continue with editing the wp_usermeta table.

Editing the wp_usermeta table

So now that we have inserted our user we will need to give it privileges to access the WordPress Admin seciton. This is done through the wp_usermeta table. You will need to know the id of the user you just created. If you don’t know the id now would be a good time to check the wp_users table for it. We will need to insert two rows into the wp_usermeta table, wp_capabilities and wp_user_level. Here are the steps you will need to follow to give your user privileges.

  1. Click on the wp_usermeta table to bring up the entries.
  2. Click on the “Insert” tab to insert a new row.
  3. Fill in the following information
    1. umeta_id – leave this blank it is automatically generated
    2. user_id – this is the id of the user you created in the previous steps
    3. meta_key – for this step insert wp_capabilities
    4. meta_value – insert exactly this – a:1:{s:13:"administrator";b:1;}
  4. Insert another row with this information
    1. umeta_id – leave this blank it is automatically generated
    2. user_id – this is the id of the user you created in the previous steps
    3. meta_key – for this step insert wp_user_level
    4. meta_value – insert 10
  5. Click the “Go” button in phpMyAdmin to insert the row.

Now you should be able to login to your wp-admin page with the username and password you specified for this user. After logged in I would visit the Users section within WordPress, click edit on the user I just added, and click the Update Profile button at the bottom of the screen. This will allow WordPress to go through and add some more information and “clean up” the user we just added.

.

جهت درک بهتر مطلب و سهولت در ساختن Admin User وردپرس ، تصاویر زیر نیز که مراحل بالا را نمایش می دهند تقدیم حضور شما می شود :

گام اول در جدول wp_users ( ساخت کاربر ) :

wp_users_table
wp_users_table

.

 

گام دوم در جدول wp_usermeta ( تبدیل کاربر به مدیر ) :

configuring-usermeta-table-entries-with-phpMyAdmin
configuring-usermeta-table-entries-with-phpMyAdmin

.

wp_usermeta_row2
wp_usermeta_row2

4 پاسخ

دیدگاهتان را بنویسید

نشانی ایمیل شما منتشر نخواهد شد. بخش‌های موردنیاز علامت‌گذاری شده‌اند *