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 / upgrade66-67.php < prev    next >
PHP Script  |  2004-01-29  |  976b  |  27 lines

  1. <?php
  2.  
  3. ######################################################
  4. # File to upgrade from PHP-Nuke 6.6 to PHP-Nuke 6.7
  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 Forums Update
  18. $db->sql_query("UPDATE ".$prefix."_bbconfig SET config_value='.0.4' where config_name='version'");
  19. $db->sql_query("UPDATE ".$prefix."_bbconfig SET config_value='3600' where config_name='session_length'");
  20.  
  21. // PHP-Nuke Version Number Update
  22. $db->sql_query("UPDATE ".$prefix."_config SET Version_Num='6.7'");
  23.  
  24. echo "PHP-Nuke Update finished!<br><br>"
  25.     ."You should now delete this upgrade file from your server.";
  26.  
  27. ?>