home *** CD-ROM | disk | FTP | other *** search
/ PC World 2005 April / PCWorld_2005-04_cd.bin / akce / web / unitednuke / unitednuke.exe / upgrades / PHP-Nuke / upgrade43-44.php < prev    next >
PHP Script  |  2003-03-17  |  9KB  |  103 lines

  1. <?php
  2.  
  3. # File to upgrade PHP-Nuke from 4.3 to 4.4
  4. # After use this file, you can safely delete it
  5. # Change the parameters to fit your info:
  6.  
  7. $host         = "localhost";
  8. $database     = "nuke";
  9. $username     = "root";
  10. $password     = "";
  11.  
  12. mysql_connect($host, $username, $password);
  13. @mysql_select_db($database);
  14.  
  15. //************************************************************
  16.  
  17.  
  18. // Access table creation
  19.  
  20. $result = mysql_query("CREATE TABLE access (access_id int(10) DEFAULT '0' NOT NULL auto_increment, access_title varchar(20), PRIMARY KEY (access_id))");
  21. $result = mysql_query("INSERT INTO access VALUES ( '1', 'User')");
  22. $result = mysql_query("INSERT INTO access VALUES ( '2', 'Moderator')");
  23. $result = mysql_query("INSERT INTO access VALUES ( '3', 'Super Moderator')");
  24.  
  25. // Authors table alteration
  26.  
  27. $result = mysql_query("ALTER TABLE authors ADD radminfaq tinyint(2) DEFAULT '0' NOT NULL after radminhead, ADD radmindownload tinyint(2) DEFAULT '0' NOT NULL after radminfaq, ADD radminforum tinyint(2) DEFAULT '0' NOT NULL after radmindownload, ADD radminreviews TINYINT (2) DEFAULT '0' not null AFTER radminforum");
  28.  
  29. // Catagories table creation
  30.  
  31. $result = mysql_query("CREATE TABLE catagories (cat_id int(10) DEFAULT '0' NOT NULL auto_increment, cat_title varchar(100), PRIMARY KEY (cat_id))");
  32.  
  33. // Config table creation
  34.  
  35. $result = mysql_query("CREATE TABLE config (allow_html int(2), allow_bbcode int(2), allow_sig int(2), posts_per_page int(10), hot_threshold int(10), topics_per_page int(10))");
  36. $result = mysql_query("INSERT INTO config VALUES ( '1', '1', '1', '10', '10', '10')");
  37.  
  38. // Downloads table creation
  39.  
  40. $result = mysql_query("CREATE TABLE downloads (did int(10) DEFAULT '0' NOT NULL auto_increment, dcounter int(10) DEFAULT '0' NOT NULL, durl varchar(255), dfilename varchar(255), dfilesize BIGINT(15), ddate date DEFAULT '0000-00-00' NOT NULL, dweb varchar(255), duser varchar(30), dver varchar(6), dcategory varchar(15), ddescription text, privs enum('0','1','2') DEFAULT '0', PRIMARY KEY (did))");
  41.  
  42. // Faq tables creation
  43.  
  44. $result = mysql_query("CREATE TABLE faqAnswer (id tinyint(4) DEFAULT '0' NOT NULL auto_increment, id_cat tinyint(4), question varchar(255), answer text, PRIMARY KEY (id))");
  45. $result = mysql_query("CREATE TABLE faqCategories (id_cat tinyint(3) DEFAULT '0' NOT NULL auto_increment, categories varchar(255), PRIMARY KEY (id_cat))");
  46.  
  47. // Forums table creation
  48.  
  49. $result = mysql_query("CREATE TABLE forums (forum_id int(10) DEFAULT '0' NOT NULL auto_increment, forum_name varchar(150), forum_desc text, forum_access int(10) DEFAULT '1', forum_moderator int(10), cat_id int(10), forum_type int(10) DEFAULT '0', forum_pass varchar(60), PRIMARY KEY (forum_id))");
  50. $result = mysql_query("CREATE TABLE forumtopics (topic_id int(10) DEFAULT '0' NOT NULL auto_increment, topic_title varchar(100), topic_poster int(10), topic_time varchar(20), topic_views int(10) DEFAULT '0' NOT NULL, forum_id int(10), topic_status int(10) DEFAULT '0' NOT NULL, topic_notify int(2) DEFAULT '0', PRIMARY KEY (topic_id))");
  51. $result = mysql_query("CREATE TABLE posts (post_id int(10) DEFAULT '0' NOT NULL auto_increment, image varchar(100) NOT NULL, topic_id int(10) DEFAULT '0' NOT NULL, forum_id int(10) DEFAULT '0' NOT NULL, poster_id int(10), post_text text, post_time varchar(20), poster_ip varchar(16), PRIMARY KEY (post_id))");
  52. $result = mysql_query("CREATE TABLE priv_msgs (msg_id int(10) DEFAULT '0' NOT NULL auto_increment, msg_image varchar(100), subject varchar(100), from_userid int(10) DEFAULT '0' NOT NULL, to_userid int(10) DEFAULT '0' NOT NULL, msg_time varchar(20), msg_text text, read_msg tinyint(10) DEFAULT '0' NOT NULL, PRIMARY KEY (msg_id), KEY msg_id (msg_id), KEY to_userid (to_userid))");
  53. $result = mysql_query("CREATE TABLE ranks (rank_id int(10) DEFAULT '0' NOT NULL auto_increment, rank_title varchar(50) NOT NULL, rank_min int(10) DEFAULT '0' NOT NULL, rank_max int(10) DEFAULT '0' NOT NULL, rank_special int(2) DEFAULT '0', PRIMARY KEY (rank_id), KEY rank_min (rank_min), KEY rank_max (rank_max))");
  54.  
  55. // Users table alteration
  56.  
  57. $result = mysql_query("select name, uname, email, femail, url, pass, storynum, umode, uorder, thold, noscore, bio, ublock, theme, commentmax, counter from users where uid='2'");
  58. list($name, $uname, $email, $femail, $url, $pass, $storynum, $umode, $uorder, $thold, $noscore, $bio, $ublock, $theme, $commentmax, $counter) = mysql_fetch_row($result);
  59. $result = mysql_query("insert into users values (NULL, '$name', '$uname', '$email', '$femail', '$url', '$pass', '$storynum', '$umode', '$uorder', '$thold', '$noscore', '$bio', '$ublockon', '$ublock', '$theme', '$commentmax', '$counter')");
  60. $result = mysql_query("select name, uname, email, femail, url, pass, storynum, umode, uorder, thold, noscore, bio, ublock, theme, commentmax, counter from users where uid='1'");
  61. list($name, $uname, $email, $femail, $url, $pass, $storynum, $umode, $uorder, $thold, $noscore, $bio, $ublock, $theme, $commentmax, $counter) = mysql_fetch_row($result);
  62. $result = mysql_query("update users set name='$name', uname='$uname', email='$email', femail='$femail', url='$url', pass='$pass', storynum='$storynum', umode='$umode', uorder='$uorder', thold='$thold', noscore='$noscore', bio='$bio', ublockon='$ublockon', ublock='$ublock', theme='$theme', commentmax='$commentmax', counter='$counter' where uid='2'");
  63. $result = mysql_query("ALTER TABLE users ADD user_avatar varchar(30) AFTER url, ADD user_regdate varchar(20) NOT NULL AFTER user_avatar, ADD user_icq varchar(15) AFTER user_regdate, ADD user_occ varchar(100) AFTER user_icq, ADD user_from varchar(100) AFTER user_occ, ADD user_intrest varchar(150) AFTER user_from, ADD user_sig varchar(255) AFTER user_intrest, ADD user_viewemail tinyint(2) AFTER user_sig, ADD user_theme int(3) AFTER user_viewemail, ADD user_aim varchar(18) AFTER user_theme, ADD user_yim varchar(25) AFTER user_aim, ADD user_msnm varchar(25) AFTER user_yim");
  64. $result = mysql_query("update users set name='', uname='Anonymous', email='', femail='', url='', user_avatar='', user_regdate='---', user_icq='', user_occ='', user_from='', user_intrest='', user_sig='', user_viewemail='0', user_theme='0', user_aim='', user_yim='', user_msnm='', pass='', storynum='10', umode='', uorder='0', thold='0', noscore='0', bio='', ublockon='0', ublock='', theme='', commentmax='4096', counter='0' where uid='1'");
  65.  
  66. $result = mysql_query("select uid from users");
  67. while(list($uid) = mysql_fetch_row($result)) {
  68.     $result2 = mysql_query("update users set user_avatar='blank.gif', user_regdate='Nov 10, 2000' where uid=$uid");
  69. }
  70.  
  71. // Users Status table creation
  72.  
  73. $result = mysql_query("CREATE TABLE users_status (uid int(11) DEFAULT '0' NOT NULL auto_increment, posts int(10) DEFAULT '0', attachsig int(2) DEFAULT '0', rank int(10) DEFAULT '0', level int(10) DEFAULT '1', PRIMARY KEY (uid))");
  74. $result = mysql_query("select uid from users");
  75. while(list($uid) = mysql_fetch_row($result)) {
  76.     $result2 = mysql_query("insert into users_status values ('$uid', '0', '0', '0', '1')");
  77. }
  78. $result = mysql_query("update users_status set level='0' where uid='1'");
  79.  
  80. // Comments table alteration
  81.  
  82. mysql_query("ALTER TABLE comments CHANGE subject subject VARCHAR (85) DEFAULT '' not null");
  83. mysql_query("ALTER TABLE pollcomments CHANGE subject subject VARCHAR (85) DEFAULT '' not null");
  84.  
  85. // Reviews table creation
  86.  
  87. mysql_query("CREATE TABLE reviews_main (title varchar(100), description text)");
  88. mysql_query("INSERT INTO reviews_main VALUES ('Reviews Section Title', 'Reviews Section Long Description')");
  89. mysql_query("CREATE TABLE reviews_comments (cid int(10) DEFAULT '0' NOT NULL auto_increment, rid int(10) DEFAULT '0' NOT NULL, userid varchar(25) NOT NULL, date datetime, comments text, score int(10) DEFAULT '0' NOT NULL, PRIMARY KEY (cid))");
  90. mysql_query("CREATE TABLE reviews (id int(10) NOT NULL auto_increment, date date DEFAULT '0000-00-00' NOT NULL, title varchar(150) DEFAULT '' NOT NULL, text text DEFAULT '' NOT NULL, reviewer varchar(20), email varchar(30), score int(10) DEFAULT '0' NOT NULL, cover varchar(100) DEFAULT '' NOT NULL, url varchar(100) DEFAULT '' NOT NULL, url_title varchar(50) DEFAULT '' NOT NULL, hits int(10) DEFAULT '0' NOT NULL, PRIMARY KEY (id))");
  91. mysql_query("CREATE TABLE reviews_add (id int(10) NOT NULL auto_increment, date date, title varchar(150) DEFAULT '' NOT NULL, text text DEFAULT '' NOT NULL, reviewer varchar(20) DEFAULT '' NOT NULL, email varchar(30) DEFAULT '' NOT NULL, score int(10) DEFAULT '0' NOT NULL, url varchar(100) DEFAULT '' NOT NULL, url_title varchar(50) DEFAULT '' NOT NULL, PRIMARY KEY (id))");
  92.  
  93. // Categories table creation and alteration
  94.  
  95. mysql_query("CREATE TABLE stories_cat (catid INT (11) DEFAULT '0' not null AUTO_INCREMENT, title VARCHAR (20) not null , counter INT (11) DEFAULT '0' not null , PRIMARY KEY (catid))");
  96. mysql_query("ALTER TABLE stories ADD catid INT (11) DEFAULT '0' not null AFTER sid");
  97. mysql_query("ALTER TABLE stories ADD ihome INT (1) DEFAULT '0' not null");
  98. mysql_query("ALTER TABLE autonews ADD catid INT (11) DEFAULT '0' not null AFTER anid");
  99. mysql_query("ALTER TABLE autonews ADD ihome INT (1) DEFAULT '0' not null");
  100.  
  101. echo "PHP-Nuke 4.4 update finished";
  102.  
  103. ?>