The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
|||
|
|||
Post counts: Higher
Is there a way to allow it to go into the millions, but it will still work normally for everyone?
|
#2
|
||||
|
||||
umm.. u could change the character max in ur MySQL table
|
#3
|
|||
|
|||
I don't know how.
|
#4
|
||||
|
||||
Run this query
PHP Code:
that should do it. |
#5
|
|||
|
|||
Ok, thanks I'll try it out. In case I want to go back what is the code for returning it to normal?
|
#6
|
|||
|
|||
Anyone know how to return it to normal?
|
#7
|
||||
|
||||
Although
[sql] ALTER TABLE `user` CHANGE `posts` `posts` SMALLINT(5) UNSIGNED DEFAULT '0' NOT NULL [/sql] is the SQL command which will revert it back to original, you cant return back if you populated your fields with high numbers. How can you restrict the field back to 5 chars again, if you have high numbers already put in there? |
#8
|
|||
|
|||
I'm not sure what you mean Logican...
|
#9
|
|||
|
|||
SMALLINT is supposed to allow only upto 65535, so if you want to have higher numbers you need to use a different type of column, like INT, which allows upto 4 billion, so use the following mysql query to change the type:
Code:
ALTER TABLE `user` CHANGE `posts` `posts` INT UNSIGNED DEFAULT '0' NOT NULL |
#10
|
||||
|
||||
*looks at old post* WTF
|
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|