Published 2005-10-20 17:46:10
INSTALLATION:
mkdir /var/www/bugs
cd /var/www/bugs
pear -C /tmp/pear.conf -c /tmp/user.pear.conf -D bin_dir=/tmp/crap \
-D php_dir=. install http://www.akbkhome.com/svn/FlexyBugs/FlexyBugs-0.0.1.tgz
wget http://devel.akbkhome.com/pearball-2005.10.20.tgz
tar xvfz pearball-2005.10.20.tgz
#create the database
mysqladmin create bugdb
#import the tables...
mysql bugdb < bugdb.sql
#create your admin user.
insert into bugdb_developers (group_id, name, password)
values (3,'your@email.address',md5('yoursecret'));
#duplicate the dummy config to your config.
cp bugs.php index.php
#create a folder for storing the attachments (and allow apache to write to it)
#in the future this should be place outside the web directory!!!
mkdir /var/www/bugdbimages
chown www-data /var/www/bugdbimages
#edit the config/bootstrapper
#(change the database line, and the file locations for storing attachments)
vi index.php
#log in and create a project and a bug type "Feature Request"