wp_users is creating users but without an ID in the table.
Asked
Active
Viewed 653 times
3 Answers
1
Make sure your settings for ID looks like this in MySql and ensure AUTO_INCREMENT is ticked.

Ma9ic
- 1,107
- 4
- 16
- 30
0
Did you create wp_users
manually? The ID
column should be defined as auto_increment
by default; extracting from one of my databases shows:
CREATE TABLE `wp_users` (
`ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
Try altering the column as described in this question.
Might be worth checking that the other tables have the correct structure as well (auto_increment, indices, etc). The correct definitions can be found in schema.php, here.
0
It is auto incremented.
No need to define when you create the users.
for the more info, please visit the wordpress.com for any help.

Gautam Tak
- 129
- 1
- 7