Username error
-
A new user signed up on the site, with the username
rice
... this is first time I am receiving this error. I'm not sure if the user notices it, but for some reason I cannot access their account.http://convoe.com/user/rice
http://convoe.com/api/user/riceAs a matter of fact, I'm getting signup errors, lol.
Weird, I'll look and see whats going on here.OKAY, so I updated to the latest and its fixed, but how am I suppose to tell that person.. their account is fucked and to make a new one?
-
A new user signed up on the site, with the username
rice
... this is first time I am receiving this error. I'm not sure if the user notices it, but for some reason I cannot access their account.http://convoe.com/user/rice
http://convoe.com/api/user/riceAs a matter of fact, I'm getting signup errors, lol.
Weird, I'll look and see whats going on here.OKAY, so I updated to the latest and its fixed, but how am I suppose to tell that person.. their account is fucked and to make a new one?
-
-
I suppose if NodeBB had a facility to send emails from the ACP to users, that all would have been easy.
@planner said:
I suppose if NodeBB had a facility to send emails from the ACP to users, that all would have been easy.
Yeah but this person doesn't even show up at all in the frontend. I'm sure its in the database though.
-
Check the database if the username is taken and if there is user data?
hget username:uid rice hgetall user:<useruidofrice>
@baris said:
Check the database if the username is taken and if there is user data?
hget username:uid rice hgetall user:<useruidofrice>
redis 127.0.0.1:420> hget username:uid rice (nil) redis 127.0.0.1:420> hgetall user:??? (empty list or set)
Well I don't know the uid for rice. I'll go look at the redis GUI.
-
If those are retuning empty the user isn't created at all.
@baris Yes I looked in the redis GUI, its all there... For security reasons I've cut off some parts of this screenshot but its there.
-
@baris nil as well.
-
Try running the following and see if you can access the user page.
hset username:uid Rice 121 hset userslug:uid rice 121
and if they have an email in their userdata
hset email:uid [email protected] 121
See if that helps.
@baris said:
Try running the following and see if you can access the user page.
hset username:uid Rice 121 hset userslug:uid rice 121
and if they have an email in their userdata
hset email:uid [email protected] 121
See if that helps.
1
1
1
All true.
-
http://convoe.com/api/user/rice :squirrel:
@baris You're awesome. Thanks!