|
From: Benjamin C. <bc...@us...> - 2005-09-14 12:38:38
|
Update of /cvsroot/phpbt/phpbt In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv4274 Modified Files: Tag: releases-1_0 CHANGELOG UPGRADING include.php Log Message: Slight tweaks for release Index: CHANGELOG =================================================================== RCS file: /cvsroot/phpbt/phpbt/CHANGELOG,v retrieving revision 1.70 retrieving revision 1.70.2.1 diff -u -r1.70 -r1.70.2.1 --- CHANGELOG 3 Aug 2005 12:32:31 -0000 1.70 +++ CHANGELOG 14 Sep 2005 12:38:30 -0000 1.70.2.1 @@ -1,3 +1,6 @@ +-- 1.0.1 -- 14 Sep 2005 +: Fixed a bug with the mysqli database layer + -- 1.0 -- 3 Aug 2005 : Added links from project summary on home page (Phil Davis). : Added display of the bug ids a bug blocks. Index: UPGRADING =================================================================== RCS file: /cvsroot/phpbt/phpbt/UPGRADING,v retrieving revision 1.15 retrieving revision 1.15.2.1 diff -u -r1.15 -r1.15.2.1 --- UPGRADING 13 Jul 2005 18:12:00 -0000 1.15 +++ UPGRADING 14 Sep 2005 12:38:30 -0000 1.15.2.1 @@ -2,6 +2,32 @@ if it doesn't, it's better to be safe than sorry. +Upgrading from 1.0 to 1.0.x +--------------------------------- +There are no database changes in this series. Either copy these files +over your current 1.0 installation or copy config.php from that location +to here and point your users to the new location. + + +Upgrading from 1.0 RCx to 1.0 +--------------------------------- + +PEAR and PEAR DB have been removed from the phpBT distribution. If you +have a system-wide install of PEAR that is available in the include +path you should set the new PEAR_PATH constant in config.php to an +empty string (''). To reuse the old pear files from RCx, copy the +inc/pear/ directory and set PEAR_PATH to 'inc/pear/'. + +Using the directory where you unpacked the new set of files... +1. Edit config-dist.php, changing the database settings to match those + from your old config.php (DB_*, TBL_PREFIX and PEAR_PATH constants). + Save config-dist.php as config.php. +2. Either copy the files from the new installation over the old one, or + point your users to the new location. + +There is no need to run the upgrade script. The upgrade is complete. + + Upgrading from 0.9.1 to 1.0 --------------------------- @@ -29,22 +55,3 @@ admin pages. Default settings should be modified so that "resolved", "closed", and "verified" are shown as being closed, and all other statuses are set to open. - - -Upgrading from 1.0 RCx to 1.0 RC6 ---------------------------------- - -PEAR and PEAR DB have been removed from the phpBT distribution. If you -have a system-wide install of PEAR that is available in the include -path you should set the new PEAR_PATH constant in config.php to an -empty string (''). To reuse the old pear files from RCx, copy the -inc/pear/ directory and set PEAR_PATH to 'inc/pear/'. - -Using the directory where you unpacked the new set of files... -1. Edit config-dist.php, changing the database settings to match those - from your old config.php (DB_*, TBL_PREFIX and PEAR_PATH constants). - Save config-dist.php as config.php. -2. Either copy the files from the new installation over the old one, or - point your users to the new location. - -There is no need to run the upgrade script. The upgrade is complete. Index: include.php =================================================================== RCS file: /cvsroot/phpbt/phpbt/include.php,v retrieving revision 1.135 retrieving revision 1.135.2.1 diff -u -r1.135 -r1.135.2.1 --- include.php 20 Jul 2005 18:19:54 -0000 1.135 +++ include.php 14 Sep 2005 12:38:30 -0000 1.135.2.1 @@ -22,7 +22,7 @@ // ------------------------------------------------------------------------ // $Id$ -define('PHPBT_VERSION', '1.0rc6'); +define('PHPBT_VERSION', '1.0.1'); @ini_set("magic_quotes_runtime", 0); @ini_set("magic_quotes_sybase", 0); @ini_set("session.save_handler", "files"); |