diff options
author | Yen-Ming Lee <leeym@FreeBSD.org> | 2005-04-29 06:09:56 +0000 |
---|---|---|
committer | Yen-Ming Lee <leeym@FreeBSD.org> | 2005-04-29 06:09:56 +0000 |
commit | d713598f90df1d3bc55335f0af45aa04128ae670 (patch) | |
tree | f4d8d8338be6d1d62b79c7368c67adca7ae896b1 /devel/flyspray/files | |
parent | 20c43636e767c666afa59ca99549e0d7ca64c967 (diff) |
- upgrade from Flyspray 0.9.5 to 0.9.7
PR: 79216
Submitted by: Nick Hilliard <nick@foobar.org> (maintainer)
Notes
Notes:
svn path=/head/; revision=134341
Diffstat (limited to 'devel/flyspray/files')
-rw-r--r-- | devel/flyspray/files/README.FreeBSD | 76 | ||||
-rw-r--r-- | devel/flyspray/files/patch-header.php | 18 |
2 files changed, 76 insertions, 18 deletions
diff --git a/devel/flyspray/files/README.FreeBSD b/devel/flyspray/files/README.FreeBSD new file mode 100644 index 000000000000..bf744769c807 --- /dev/null +++ b/devel/flyspray/files/README.FreeBSD @@ -0,0 +1,76 @@ +Configuration Instructions for Flyspray +======================================= + +0) If you are upgrading from a previous version of flyspray, please skip to + the Upgrading section below. + +1) Create a mysql database for Flyspray to use. Here is one way to do that, + from the unix/linux command line, entering your mysql root password when + prompted: + +# mysqladmin -u root -p create flyspray + +2) Import the Flyspray database tables into your new empty database. Here is + the unix/linux command line method; be sure to enter your mysql root + password when prompted: + +# mysql -u root -p flyspray < flyspray-version.sql + +3) Insert the following configuration command into your httpd.conf: + + Alias "/flyspray/" "/usr/local/share/flyspray/" + +4) Point your browser to http://yourserver.com/flyspray/ and you should + see the Flyspray setup script! + +5) If you are upgrading from an old version of Flyspray, skip to note 10 + below. Otherwise, create youself a new user, and put this user into the + Admin group. + +6) CHANGE THE PASSWORD FOR THE super/super ACCOUNT by clicking the 'Change + Password' link near the top of the page. You might like to disable the + account entirely, or it will appear in the list of members to be assigned + tasks. + +7) Click on the admin links to set up your Options and lists. + +8) Close the sample task, and begin adding your own. + +9) Report any bugs you find back to http://flyspray.rocks.cc/?p=Support or the + mailing list linked from the Flyspray homepage. + + +Upgrading from Previous Versions of Flyspray +============================================ + +You can upgrade from a previous version of Flyspray by doing the following: + +0) read /usr/local/share/doc/flyspray/UPGRADING.txt. + +1) back up your old flyspray task database using "mysqldump". No, really, + you seriously run the risk of losing ALL your data if you don't do this. + +2) load http://yourserver.com/flyspray/ in your browser, set up the + database access parameters and click the "continue to next page" button. + DO NOT click "Continue to next page" a second time (i.e. on the page + which reads "Next, we are going to try setting up your database...") + +3) If you are upgrading from 0.9.5, you will need to upgrade your database + settings to 0.9.6 before going to 0.9.7. You can do this by loading the + upgrade script on: + + http://yourserver.com/flyspray/sql/upgrade_0.9.5_to_0.9.6-mysql.php + + You will need to click "Perform upgrade now!". + +4) To upgrade your database structure from 0.9.6 format to 0.9.7 load the + following URL into your browser: + + http://yourserver.com/flyspray/sql/upgrade_0.9.6_to_0.9.7.php + + You will need to click "Take me to Flyspray 0.9.7 now!" + +5) That's it! flyspray has been upgraded to 0.9.7. If you messed up the + sequence of commands, you will probably have lost data in the process, + and may need to re-install your database from your backup. You did + take a backup, right? diff --git a/devel/flyspray/files/patch-header.php b/devel/flyspray/files/patch-header.php deleted file mode 100644 index 465790fe1731..000000000000 --- a/devel/flyspray/files/patch-header.php +++ /dev/null @@ -1,18 +0,0 @@ ---- header.php.orig Fri Feb 20 02:49:20 2004 -+++ header.php Fri Aug 20 12:34:04 2004 -@@ -2,13 +2,13 @@ - - // Directory with Flyspray scripts. It's the directory where this file is - // located. --$basedir = '/var/www/flyspray'; -+$basedir = '/usr/local/share/flyspray'; - - // Flyspray uses ADODB for database access. You will need to install - // it somewhere on your server for Flyspray to function. It can be installed - // inside the Flyspray directory if you wish. The next line needs to be the - // correct path to your adodb.inc.php file. --include_once ( "/usr/share/adodb/adodb.inc.php" ); -+include_once ( "/usr/local/share/adodb/adodb.inc.php" ); - - // Modify this next line to reflect the correct path to your Flyspray - // functions.inc.php file. |