imported_silkroad
06-20-2008, 03:33 PM
[BUG]
Hello,
Our forums have large user ids for many users (for example, 302044006) and none of these IDs will work in our forums correctly.
For example, I tried to add the Guest User from a new account with a high number, and each time it converted the big user id to something smaller.
In addition, users with the big ids cannot save scores, etc.
The code need to be upgraded to permit the maximum size of user ids permitted in vBulletin.
--------------- Added 1213982775 at 1213982775 ---------------
Note to developer:
All these large user ids are truncated / transformed to the user id 8388607 when saved as the user id of the guest user.
(just FYI).
--------------- Added 1213985072 at 1213985072 ---------------
See also, reply from Steve back at vBulletin.com ....
http://www.vbulletin.com/forum/showthread.php?p=1583363
--------------- Added 1213986405 at 1213986405 ---------------
vBulletin user IDs seem to be unsigned integers, where the unsigned range of user IDs is 0 to 4294967295.
ipProArcade uses signed mediumints for user IDs, where the range of user IDs is -8388608 to 8388607.
Ref: http://www.ispirer.com/doc/sqlways38...ays-1-190.html
Hello,
Our forums have large user ids for many users (for example, 302044006) and none of these IDs will work in our forums correctly.
For example, I tried to add the Guest User from a new account with a high number, and each time it converted the big user id to something smaller.
In addition, users with the big ids cannot save scores, etc.
The code need to be upgraded to permit the maximum size of user ids permitted in vBulletin.
--------------- Added 1213982775 at 1213982775 ---------------
Note to developer:
All these large user ids are truncated / transformed to the user id 8388607 when saved as the user id of the guest user.
(just FYI).
--------------- Added 1213985072 at 1213985072 ---------------
See also, reply from Steve back at vBulletin.com ....
http://www.vbulletin.com/forum/showthread.php?p=1583363
--------------- Added 1213986405 at 1213986405 ---------------
vBulletin user IDs seem to be unsigned integers, where the unsigned range of user IDs is 0 to 4294967295.
ipProArcade uses signed mediumints for user IDs, where the range of user IDs is -8388608 to 8388607.
Ref: http://www.ispirer.com/doc/sqlways38...ays-1-190.html