![]() |
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! :) |
According to what you've posted, you can run these queries:
PHP Code:
PHP Code:
|
THANKS SO MUCH ERWIN!!!! it worked :D That made my day!... I wish people didnt release hacks that dont work
|
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. |
All times are GMT. The time now is 01:17 AM. |
Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
![]() |
|
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|