home *** CD-ROM | disk | FTP | other *** search
/ PC World 2005 April / PCWorld_2005-04_cd.bin / akce / web / phpnuke / PHP-Nuke-7.5.exe / upgrades / 6.x / upgrade65-66.php < prev    next >
PHP Script  |  2004-01-29  |  935b  |  28 lines

  1. <?php
  2.  
  3. ######################################################
  4. # File to upgrade from PHP-Nuke 6.5 to PHP-Nuke 6.6
  5. # After you used this file, you can safely delete it.
  6. ######################################################
  7. #            -= WARNING: PLEASE READ =-
  8. #
  9. # NOTE: This file uses config.php to retrieve needed
  10. # variables values. So, to do the upgrade PLEASE copy
  11. # this file in your server root directory and execute
  12. # it from your browser.
  13. ######################################################
  14.  
  15. include("mainfile.php");
  16.  
  17. // Stories Table Alteration
  18. $db->sql_query("ALTER TABLE ".$prefix."_stories ADD associated TEXT NOT NULL");
  19. $db->sql_query("ALTER TABLE ".$prefix."_autonews ADD associated TEXT NOT NULL");
  20.  
  21. // PHP-Nuke Version Number Update
  22. $db->sql_query("UPDATE ".$prefix."_config SET Version_Num='6.6'");
  23.  
  24. echo "PHP-Nuke Update finished!<br><br>"
  25.     ."You should now delete this upgrade file from your server.";
  26.  
  27. ?>
  28.