vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 General Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=111)
-   -   VERY IMPORTANT! I need to know how to add this one table back, I have a gernal idea (https://vborg.vbsupport.ru/showthread.php?t=51718)

Xelation 04-17-2003 05:46 AM

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:

$explain[]="Creating table thread";

$query[]="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)
)"
;
$explain[]="Creating table thread rate"

I was wondering.. what would I need to do to add that to mysql, I know how to run queires, but would I just run this?

PHP Code:

$query[]="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)
)"


another qurey it told me to run was this...

UPDATE forum SET allowratings='0' WHERE allowratings = '1'

how can I reverse that?


I appreciate any help I can get! :)

Erwin 04-17-2003 06:16 AM

According to what you've posted, you can run these queries:

PHP Code:

CREATE TABLE threadrate (
   
threadrateid int(10unsigned DEFAULT '0' NOT NULL auto_increment,
   
threadid int(10unsigned DEFAULT '0' NOT NULL,
   
userid int(10unsigned DEFAULT '0' NOT NULL,
   
vote smallint(6) DEFAULT '0' NOT NULL,
   
ipaddress varchar(20NOT NULL,
   
PRIMARY KEY (threadrateid),
   
KEY threadid (threadid)); 

and then this:

PHP Code:

UPDATE forum SET allowratings='1'

to return back to where you were...

Xelation 04-17-2003 06:18 AM

THANKS SO MUCH ERWIN!!!! it worked :D That made my day!... I wish people didnt release hacks that dont work

Tigga 04-17-2003 06:22 AM

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
  • Page Generation 0.01114 seconds
  • Memory Usage 1,724KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (4)bbcode_php_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (4)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete