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

  1. <?php
  2.  
  3. # File to upgrade PHP-Nuke from 2.5 to 3.5
  4. # After use this, you can delete it
  5.  
  6. $host       = "localhost";
  7. $database   = "nuke";
  8. $username   = "root";
  9. $password   = "";
  10.  
  11. mysql_connect($host, $username, $password);
  12.      @mysql_select_db($database);
  13.  
  14. //***********************************************
  15.  
  16. $result = mysql_query("CREATE TABLE ephem (eid int(11) DEFAULT '0' NOT NULL auto_increment, did int(2) DEFAULT '0' NOT NULL, mid int(2) DEFAULT '0' NOT NULL, yid int(4) DEFAULT '0' NOT NULL, content text NOT NULL, PRIMARY KEY (eid))");
  17. if (!$result) { 
  18.     echo "Creation of ephem table failed!<br>" .mysql_errno(). ": ".mysql_error(). "<br>"; 
  19.     return; 
  20. }
  21.  
  22. $result = mysql_query("ALTER TABLE stories DROP hits");
  23. if (!$result) { 
  24.     echo "Alteration of stories table failed!<br>" .mysql_errno(). ": ".mysql_error(). "<br>"; 
  25.     return; 
  26. }
  27.  
  28. $result = mysql_query("ALTER TABLE stories CHANGE introtext hometext text");
  29. if (!$result) { 
  30.     echo "Alteration of stories table failed!<br>" .mysql_errno(). ": ".mysql_error(). "<br>"; 
  31.     return; 
  32. }
  33.  
  34. $result = mysql_query("ALTER TABLE stories CHANGE fulltext bodytext text");
  35. if (!$result) { 
  36.     echo "Alteration of stories table failed!<br>" .mysql_errno(). ": ".mysql_error(). "<br>"; 
  37.     return; 
  38. }
  39.  
  40. echo "PHP-Nuke Tables Updated, Ok...";
  41. ?>
  42.