Help

kenchika

New Member
Messages
1
Reaction score
0
Points
0
When I'm trying to do a registration file and click register, this pops up: error in registrationDuplicate entry '' for key 'username'
Ehat does it mean?

 

essellar

Community Advocate
Community Support
Messages
3,295
Reaction score
227
Points
63
It means that the username column in the registration table has been set up as UNIQUE (so duplicates aren't allowed and the database will error, although the code is very poorly written if you are seeing that error), and that the username you were trying to use already exists. You'd need to use a different username. If it's your site, the registration code needs to be fixed.
 
Top