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

  1. <?php
  2.  
  3. # File to upgrade PHP-Nuke from 4.1/4.2 to 4.3
  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. $result = mysql_query("ALTER TABLE links_categories ADD cdescription TEXT not null");
  19. if (!$result) { 
  20.     echo "Alteration of links_categories table failed!<br>" .mysql_errno(). ": ".mysql_error(). "<br>"; 
  21.     return; 
  22. }
  23.  
  24. $result = mysql_query("CREATE TABLE links_editorials (linkid INT (11) DEFAULT '0' not null , adminid VARCHAR (60) not null , editorialtimestamp DATETIME not null , editorialtext TEXT not null , editorialtitle VARCHAR (100) not null , PRIMARY KEY (linkid))");
  25. if (!$result) { 
  26.     echo "Creation of links_editorials table failed!<br>" .mysql_errno(). ": ".mysql_error(). "<br>"; 
  27.     return; 
  28. }
  29.  
  30. $result = mysql_query("ALTER TABLE links_links ADD submitter VARCHAR (60) not null , ADD linkratingsummary DOUBLE (6,4) DEFAULT '0.0000' not null , ADD totalvotes INT (11) DEFAULT '0' not null , ADD totalcomments INT (11) DEFAULT '0' not null");
  31. if (!$result) { 
  32.     echo "Alteration of links_links table failed!<br>" .mysql_errno(). ": ".mysql_error(). "<br>"; 
  33.     return; 
  34. }
  35.  
  36. $result = mysql_query("CREATE TABLE links_modrequest (requestid INT (11) DEFAULT '0' not null AUTO_INCREMENT, lid INT (11) DEFAULT '0' not null , cid INT (11) DEFAULT '0' not null , sid INT (11) DEFAULT '0' not null , title VARCHAR (100) not null , url VARCHAR (100) not null , description TEXT not null , modifysubmitter VARCHAR (60) not null , brokenlink INT (3) DEFAULT '0' not null , PRIMARY KEY (requestid), UNIQUE (requestid))");
  37. if (!$result) { 
  38.     echo "Creation of links_modrequest table failed!<br>" .mysql_errno(). ": ".mysql_error(). "<br>"; 
  39.     return; 
  40. }
  41.  
  42. $result = mysql_query("ALTER TABLE links_newlink ADD submitter VARCHAR (60) not null");
  43. if (!$result) { 
  44.     echo "Alteration of links_newlink table failed!<br>" .mysql_errno(). ": ".mysql_error(). "<br>"; 
  45.     return; 
  46. }
  47.  
  48. $result = mysql_query("CREATE TABLE links_votedata (ratingdbid INT (11) DEFAULT '0' not null AUTO_INCREMENT, ratinglid INT (11) DEFAULT '0' not null , ratinguser VARCHAR (60) not null , rating INT (11) not null , ratinghostname VARCHAR (60) not null , ratingcomments TEXT not null , ratingtimestamp DATETIME not null , PRIMARY KEY (ratingdbid))");
  49. if (!$result) { 
  50.     echo "Creation of links_votedata table failed!<br>" .mysql_errno(). ": ".mysql_error(). "<br>"; 
  51.     return; 
  52. }
  53.  
  54. $result = mysql_query("CREATE TABLE session (username VARCHAR (25) not null , time VARCHAR (14) not null , host_addr VARCHAR (20) not null , guest INT (1) not null )"); 
  55. if (!$result) { 
  56.     echo "Creation of session table failed!<br>" .mysql_errno(). ": ".mysql_error(). "<br>"; 
  57.     return; 
  58. }
  59.  
  60. $result = mysql_query("ALTER TABLE stories CHANGE topic topic INT (3) DEFAULT '1' not null");
  61. if (!$result) { 
  62.     echo "Alteration of stories table failed!<br>" .mysql_errno(). ": ".mysql_error(). "<br>"; 
  63.     return; 
  64. }
  65.  
  66. $result = mysql_query("CREATE TABLE autonews (anid INT (11) DEFAULT '0' not null AUTO_INCREMENT, aid VARCHAR (30) not null , title VARCHAR (80) not null , time VARCHAR (19) not null , hometext TEXT not null , bodytext TEXT not null , topic INT (3) DEFAULT '1' not null , informant VARCHAR (20) not null , notes TEXT not null , PRIMARY KEY (anid))");
  67. if (!$result) { 
  68.     echo "Creation of autonews table failed!<br>" .mysql_errno(). ": ".mysql_error(). "<br>"; 
  69.     return; 
  70. }
  71.  
  72. $result = mysql_query("ALTER TABLE authors 
  73.       ADD radminarticle tinyint(2) DEFAULT '0' NOT NULL,
  74.       ADD radmintopic tinyint(2) DEFAULT '0' NOT NULL,
  75.       ADD radminleft tinyint(2) DEFAULT '0' NOT NULL,
  76.       ADD radminright tinyint(2) DEFAULT '0' NOT NULL,
  77.       ADD radminuser tinyint(2) DEFAULT '0' NOT NULL,
  78.       ADD radminmain tinyint(2) DEFAULT '0' NOT NULL,
  79.       ADD radminsurvey tinyint(2) DEFAULT '0' NOT NULL,
  80.       ADD radminsection tinyint(2) DEFAULT '0' NOT NULL,
  81.       ADD radminlink tinyint(2) DEFAULT '0' NOT NULL,
  82.       ADD radminephem tinyint(2) DEFAULT '0' NOT NULL,
  83.       ADD radminfilem tinyint(2) DEFAULT '0' NOT NULL,
  84.       ADD radminhead tinyint(2) DEFAULT '0' NOT NULL,
  85.       ADD radminsuper tinyint(2) DEFAULT '1' NOT NULL
  86.    ");
  87. if (!$result) { 
  88.     echo "Alter of authors table failed!<br>" .mysql_errno(). ": ".mysql_error(). "<br>"; 
  89.     return; 
  90. }
  91.  
  92. echo "PHP-Nuke Tables Updated, Ok...";
  93. ?>