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

  1. <?php
  2.  
  3. #####################################################
  4. # File to upgrade from PHP-Nuke 5.4 to PHP-Nuke 5.5
  5. # After you used this file, you can safely delete it.
  6. # Change the parameters to fit your info:
  7. #####################################################
  8.  
  9. $host         = "localhost";
  10. $database     = "nuke";
  11. $username     = "root";
  12. $password     = "";
  13. $prefix     = "nuke";
  14. $user_prefix    = "nuke";
  15.  
  16. mysql_connect($host, $username, $password);
  17. @mysql_select_db($database);
  18.  
  19. ####################### BEGIN THE UPDATE #######################################
  20.  
  21. // New Main Table creation
  22. mysql_query("CREATE TABLE ".$prefix."_main (main_module VARCHAR(255) NOT NULL)");
  23. mysql_query("INSERT INTO ".$prefix."_main (main_module) VALUES ('News')");
  24.  
  25. // Modules Table Alteration
  26. mysql_query("INSERT INTO ".$prefix."_modules VALUES (NULL, 'News', '', 1, 0)");
  27. mysql_query("INSERT INTO ".$prefix."_modules VALUES (NULL, 'Your_Account', '', 1, 0)");
  28. mysql_query("INSERT INTO ".$prefix."_modules VALUES (NULL, 'Surveys', '', 1, 0)");
  29. mysql_query("INSERT INTO ".$prefix."_modules VALUES (NULL, 'Statistics', '', 1, 0)");
  30. mysql_query("INSERT INTO ".$prefix."_modules VALUES (NULL, 'Top', '', 1, 0)");
  31. mysql_query("INSERT INTO ".$prefix."_modules VALUES (NULL, 'Topics', '', 1, 0)");
  32. mysql_query("INSERT INTO ".$prefix."_modules VALUES (NULL, 'Search', '', 1, 0)");
  33. mysql_query("INSERT INTO ".$prefix."_modules VALUES (NULL, 'Submit_News', '', 1, 0)");
  34. mysql_query("INSERT INTO ".$prefix."_modules VALUES (NULL, 'Recommend_Us', '', 1, 0)");
  35. mysql_query("INSERT INTO ".$prefix."_modules VALUES (NULL, 'Private_Messages', '', 1, 0)");
  36.  
  37. // Downloads Table Alteration - categories reconstruction by simplywebdesign.com  20-01-2002
  38. mysql_query("ALTER TABLE ".$prefix."_downloads_categories ADD parentid TINYINT(11) DEFAULT '0' NOT NULL");
  39. $result = mysql_query("select sid,cid, title from ".$prefix."_downloads_subcategories order by sid");
  40. while(list($sid,$cid, $title) = mysql_fetch_row($result)) {
  41.     mysql_query("insert into ".$prefix."_downloads_categories values (NULL, '$title', '', '$cid')");
  42.     $get_last_added = mysql_query("select max(cid) last_added_cat from ".$prefix."_downloads_categories");
  43.     while(list($last_added_cat) = mysql_fetch_row($get_last_added)) {
  44.         $downloads_to_update = mysql_query("select lid from ".$prefix."_downloads_downloads where sid = $sid");
  45.         while(list($lid) = mysql_fetch_row($downloads_to_update)) {
  46.             $q = "update ".$prefix."_downloads_downloads set cid = ".$last_added_cat." where lid= ". $lid."";
  47.             mysql_query($q);
  48.     }
  49.     }
  50. }
  51. mysql_query("DROP TABLE ".$prefix."_downloads_subcategories");
  52.  
  53. // Content Pages Categories Table Creation
  54. mysql_query("CREATE TABLE ".$prefix."_pages_categories (cid INT(10) DEFAULT '0' AUTO_INCREMENT, title VARCHAR(255) NOT NULL, description TEXT NOT NULL , PRIMARY KEY (cid))");
  55. mysql_query("ALTER TABLE ".$prefix."_pages ADD cid INT(10) DEFAULT '0' NOT NULL AFTER pid");
  56.  
  57. // Session Table Alteration
  58. mysql_query("ALTER TABLE ".$prefix."_session CHANGE host_addr host_addr VARCHAR(48) NOT NULL");
  59.  
  60. // Statistics Table Creation
  61. mysql_query("CREATE TABLE nuke_stats_date (year smallint(6) NOT NULL default '0', month tinyint(4) NOT NULL default '0', date tinyint(4) NOT NULL default '0', hits bigint(20) NOT NULL default '0')");
  62. mysql_query("CREATE TABLE nuke_stats_hour (year smallint(6) NOT NULL default '0', month tinyint(4) NOT NULL default '0', date tinyint(4) NOT NULL default '0', hour tinyint(4) NOT NULL default '0', hits int(11) NOT NULL default '0')");
  63. mysql_query("CREATE TABLE nuke_stats_month (year smallint(6) NOT NULL default '0', month tinyint(4) NOT NULL default '0', hits bigint(20) NOT NULL default '0')");
  64. mysql_query("CREATE TABLE nuke_stats_year (year smallint(6) NOT NULL default '0', hits bigint(20) NOT NULL default '0')");
  65.  
  66. // Authors and Users Table Alteration
  67. mysql_query("ALTER TABLE ".$prefix."_authors CHANGE aid aid VARCHAR(25) NOT NULL");
  68. mysql_query("ALTER TABLE ".$prefix."_authors CHANGE url url VARCHAR(255) NOT NULL");
  69. mysql_query("ALTER TABLE ".$prefix."_authors CHANGE email email VARCHAR(255) NOT NULL");
  70. mysql_query("ALTER TABLE ".$user_prefix."_users CHANGE email email VARCHAR(255) NOT NULL");
  71. mysql_query("ALTER TABLE ".$user_prefix."_users CHANGE femail femail VARCHAR(255) NOT NULL");
  72. mysql_query("ALTER TABLE ".$user_prefix."_users CHANGE url url VARCHAR(255) NOT NULL");
  73.  
  74. // Repair the Encyclopedia table (an error I had... Almost always I know what I do)
  75. @mysql_query("ALTER TABLE ".$prefix."_encyclopedia CHANGE clanguage elanguage VARCHAR(30) NOT NULL");
  76.  
  77. // Downloads & Links Table Alteration
  78. mysql_query("ALTER TABLE ".$prefix."_downloads_categories CHANGE parentid parentid INT(11) NOT NULL");
  79. mysql_query("ALTER TABLE ".$prefix."_links_categories CHANGE parentid parentid INT(11) NOT NULL");
  80.  
  81. // Stories Table Alteration
  82. mysql_query("ALTER TABLE ".$prefix."_stories ADD score INT(10) DEFAULT '0' NOT NULL");
  83. mysql_query("ALTER TABLE ".$prefix."_stories ADD ratings INT(10) DEFAULT '0' NOT NULL");
  84.  
  85. echo "PHP-Nuke Update finished!";
  86.  
  87. ?>