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

  1. <?php
  2.  
  3. ######################################################
  4. # File to upgrade from PHP-Nuke 6.7 to PHP-Nuke 6.8
  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.8'");
  19.  
  20. echo "PHP-Nuke Update finished!<br><br>"
  21.     ."You should now delete this upgrade file from your server.<br><br>"
  22.     ."<b>IMPORTANT ANNOUNCE:</b><br>"
  23.     ."PHP-Nuke now includes XDMP Service Client, which is "
  24.     ."an innovative service that, after a very simple configuration, will "
  25.     ."automaticaly retrieve and publish news for your site <b>without any "
  26.     ."human intervention!</b>. You can access XDMP Client from <a href=\"modules/News/xdmp.php\">HERE</a> "
  27.     ."after you're logged as administrator of your system. To know more "
  28.     ."about this great service just visit XDMP website at <a href=\"http://xdmp.com\" target=\"new\">XDMP.com</a>";
  29. ?>