Now Ajax

Now Numbering

How to Create a WordPress User Through An SQL Query From PhpMYAdmin Area With Admin Right

Are you looking to create a WordPress user using an SQL query from the PhpMyAdmin area? Here is the query that you need to execute with proper parameters. You need to update a few things like ID (Don't use an existing id), Username, password in raw text, email and user name as profile info. You also need to check for a few thing while creating a WordPress user from database (The table prefix). Once you have SET @id = 99; SET @user = 'username'; SET @pass = 'password'; SET @email = '[email protected]'; SET @name = 'marshall'; INSERT INTO wp_users (ID, user_login, user_pass, user_nicename,...

Read More