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 / 7.x / upgrade70-71.php next >
PHP Script  |  2004-11-01  |  2KB  |  30 lines

  1. <?php
  2.  
  3. ######################################################
  4. # File to upgrade from PHP-Nuke 7.0 to PHP-Nuke 7.1
  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. // Subscription Table Creation
  18. $db->sql_query("CREATE TABLE ".$prefix."_subscriptions (id INT( 10 ) DEFAULT '0' AUTO_INCREMENT, userid INT( 10 ) DEFAULT '0', subscription_expire VARCHAR( 50 ) NOT NULL , INDEX ( id , userid ))");
  19. $db->sql_query("ALTER TABLE ".$prefix."_blocks ADD subscription INT(1) DEFAULT '0' NOT NULL");
  20.  
  21. // PHP-Nuke copyright notice modification to be GPL 2(c) section compliant.
  22. $db->sql_query("UPDATE ".$prefix."_config SET copyright='PHP-Nuke Copyright © 2004 by Francisco Burzi. This is free software, and you may redistribute it under the <a href=\"http://phpnuke.org/files/gpl.txt\">GPL</a>. PHP-Nuke comes with absolutely no warranty, for details, see the <a href=\"http://phpnuke.org/files/gpl.txt\">license</a>.'");
  23.  
  24. // PHP-Nuke Version Number Update
  25. $db->sql_query("UPDATE ".$prefix."_config SET Version_Num='7.1'");
  26.  
  27. echo "PHP-Nuke Update finished!<br><br>"
  28.     ."You should now delete this upgrade file from your server.<br><br>";
  29. ?>
  30.