|
From: Benjamin C. <bc...@us...> - 2001-09-15 16:56:16
|
Update of /cvsroot/phpbt/phpbt
In directory usw-pr-cvs1:/tmp/cvs-serv21859
Modified Files:
INSTALL
Log Message:
Updated for 0.3.0
Index: INSTALL
===================================================================
RCS file: /cvsroot/phpbt/phpbt/INSTALL,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- INSTALL 2001/08/25 03:36:04 1.7
+++ INSTALL 2001/09/15 16:56:12 1.8
@@ -3,25 +3,25 @@
1. Edit the database creation script, changing the info for the Admin user.
2. Run the database creation script (currently only MySQL) by running
"mysql -u <user> -p<password> < createdb.sql"
-3. Install PHPlib (http://sourceforge.net/projects/phplib/) if it's not already
+1. Install PHPlib (http://sourceforge.net/projects/phplib/) if it's not already
installed.
-4. Copy the directory tree from the tarball to a location suitable for serving
+2. Copy the directory tree from the tarball to a location suitable for serving
web pages.
-5. Run the configure script (somewhat experimental, but it should work)
+3. Run the configure script. This will change config.php (creating a backup)
+ and run configure_db which creates createdb.sql.
- -- or --
-
-5. Edit config.php as follows:
- a. Change the INSTALLPATH and INSTALLURL variables to point the right
- locations.
- b. Change the ADMINEMAIL constant to what you want
- c. Change the database login info in class dbclass.
- d. Change the ENCRYPTPASS constant to 1 if you want to have passwords stored
- encrypted in the database.
- e. Change the USE_JPGRAPH constant to 1 if you want to use the jpgraph class
- (http://www.aditus.nu/jpgraph/) to display the bug summary info. If you
- enable this you'll also need to edit the JPGRAPH_PATH constant, and
- you'll need to edit the jpgraph.php file from the jpgraph disribution.
-6. Browse on over to the installation, choose Admin tools, login with the info
+ -- or --
+
+3. Configure manually.
+ a. Edit the constants in config.php.
+ b. Edit the variables in configure_db and run it to get createdb.sql.
+4. If you want to use jpgraph (http://www.aditus.nu/jpgraph/)
+ to display the bug summary info, you will also need to edit
+ jpgraph.php from the jpgraph disribution.
+5. Edit createdb.sql, changing the admin info in the database insert. You can
+ search on the text ad...@ex... (around line 240).
+6. Use createdb.sql to create your database. With MySQL it can be done like
+ mysql -h <db host> -u <username> -p<yourpassword> < createdb.sql
+7. Browse on over to the installation, choose Admin tools, login with the info
you put in the database creation script, and create your first project.
-7. Start reporting bugs
+8. Start reporting bugs
|