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 / upgrade71-72.php < prev    next >
PHP Script  |  2004-11-01  |  2KB  |  43 lines

  1. <?php
  2.  
  3. ######################################################
  4. # File to upgrade from PHP-Nuke 7.1 to PHP-Nuke 7.2
  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. # IMPORTANT: PHP-Nuke 7.2 doesn't support WebMail module
  15. # anymore. If you still use this module just apply this
  16. # upgrade as is, if you want to remove it proceed to
  17. # delete /modules/WebMail folder and uncomment the two
  18. # queries lines bellow (WebMail Table Remove).
  19. ######################################################
  20.  
  21. include("mainfile.php");
  22.  
  23. // Forums Table Modification
  24. $db->sql_query("UPDATE ".$prefix."_bbconfig SET config_value='.0.7' WHERE config_name='version'");
  25.  
  26. // FAQ Tables Alteration
  27. $db->sql_query("ALTER TABLE ".$prefix."_faqAnswer RENAME ".$prefix."_faqanswer");
  28. $db->sql_query("ALTER TABLE ".$prefix."_faqCategories RENAME ".$prefix."_faqcategories");
  29.  
  30. // WebMail Table Remove
  31. // IMPORTANT: UNCOMMENT THE FOLLOWING LINES TO REMOVE WEBMAIL MODULE TABLES
  32. //$db->sql_query("DELETE TABLE ".$prefix."_popsettings");
  33. //$db->sql_query("ALTER TABLE nuke_config DROP footermsgtxt, DROP email_send, DROP attachmentdir, DROP attachments, DROP attachments_view, DROP download_dir, DROP defaultpopserver, DROP singleaccount, DROP singleaccountname, DROP numaccounts, DROP imgpath, DROP filter_forward");
  34.  
  35. // PHP-Nuke copyright notice modification to be GPL 2(c) section compliant.
  36. $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>.'");
  37.  
  38. // PHP-Nuke Version Number Update
  39. $db->sql_query("UPDATE ".$prefix."_config SET Version_Num='7.2'");
  40.  
  41. echo "PHP-Nuke Update finished!<br><br>"
  42.     ."You should now delete this upgrade file from your server.<br><br>";
  43. ?>