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 / upgrade68-69.php < prev    next >
PHP Script  |  2004-01-29  |  1KB  |  27 lines

  1. <?php
  2.  
  3. ######################################################
  4. # File to upgrade from PHP-Nuke 6.8 to PHP-Nuke 6.9
  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. // PHP-Nuke Version Number Update
  18. $db->sql_query("UPDATE ".$prefix."_config SET Version_Num='6.9'");
  19.  
  20. echo "PHP-Nuke Step 1 Update finished!<br><br>"
  21.     ."You should now delete this upgrade file from your server.<br><br>"
  22.     ."<b>IMPORTANT ANNOUNCE:</b><br>"
  23.     ."Is VERY IMPORTANT that you now upgrade the FORUMS Module by clicking <a href=\"modules.php?name=Forums&file=update_to_205\">HERE</a>, "
  24.     ."this process is now separated from the core upgrade. After the update you can safely delete the file "
  25.     ."<i>/modules/Forums/update_to_205.php</i><br><br>"
  26.     ."That file will upgrade Forums, Private Messages and Members List modules...";
  27. ?>