The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
#1
|
||||
|
||||
VERY IMPORTANT! I need to know how to add this one table back, I have a gernal idea
ok, I added a hack that required me to drop this table... the hack doesnt work and now when I delete thread theirs and error.. So I reverted all the php files back and now I need to add the threadrate table back to mysql... I took at look at the install file in the admin dir.... I found this..
PHP Code:
PHP Code:
UPDATE forum SET allowratings='0' WHERE allowratings = '1' how can I reverse that? I appreciate any help I can get! |
#2
|
||||
|
||||
According to what you've posted, you can run these queries:
PHP Code:
PHP Code:
|
#3
|
||||
|
||||
THANKS SO MUCH ERWIN!!!! it worked That made my day!... I wish people didnt release hacks that dont work
|
#4
|
||||
|
||||
The query you should run to add the table would be:
CREATE TABLE threadrate ( threadrateid int(10) unsigned DEFAULT '0' NOT NULL auto_increment, threadid int(10) unsigned DEFAULT '0' NOT NULL, userid int(10) unsigned DEFAULT '0' NOT NULL, vote smallint(6) DEFAULT '0' NOT NULL, ipaddress varchar(20) NOT NULL, PRIMARY KEY (threadrateid), KEY threadid (threadid)); To reverse the other query you would run this one: UPDATE forum SET allowratings='1' WHERE allowratings = '0'; That will update all your forums to allow ratings. Alternatly you could just change the option in the Admin CP. |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|