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

  1. <?php
  2.  
  3. #####################################################
  4. # File to upgrade from PHP-Nuke 5.2 to PHP-Nuke 5.3
  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"; /* Your database table's prefix */
  14.  
  15. mysql_connect($host, $username, $password);
  16. @mysql_select_db($database);
  17.  
  18. ####################### BEGIN THE UPDATE #######################################
  19.  
  20. // Modules Table Creation
  21. mysql_query("CREATE TABLE ".$prefix."_modules (mid INT (10) DEFAULT '0' null AUTO_INCREMENT, title VARCHAR (255) not null , active INT (1) DEFAULT '0' not null , view INT (1) DEFAULT '0' not null , PRIMARY KEY (mid), INDEX (mid))");
  22.  
  23. // Blocks Table Alteration
  24. $bkey = "modules";
  25. $title = "Modules";
  26. $bkey2 = "ephem";
  27. mysql_query("update ".$prefix."_blocks set title='$title', active='1' where bkey='$bkey2'");
  28. mysql_query("update ".$prefix."_blocks set bkey='$bkey' where title='$title'");
  29.  
  30. echo "PHP-Nuke Update finished!";
  31.  
  32. ?>