License

The rights to use and distribute this this software licensed to you under the conditions of the GNU General Public License.

The included ADOdb software is licensed under a dual license: BSD-style and GNU Lesser Public License.

Files

All these downloads include the required ADOdb database abstraction layer.

Latest release

Latest development version

See GitHub for the latest code.

Installation

See quick installation guide.

Upgrade

To upgrade from 0.1.6 to 0.1.7, replace all the PHP and CSS files except include/config.php. Then using PhpMyAdmin (or any MySQL client), run the following commands to update the database schema:

alter table volunteers modify column organization varchar(60) not null default ''; alter table volunteers modify column prefix varchar(20) not null default ''; alter table volunteers modify column first varchar(20) not null default ''; alter table volunteers modify column middle varchar(20) not null default ''; alter table volunteers modify column last varchar(40) not null default ''; alter table volunteers modify column suffix varchar(10) not null default ''; alter table volunteers modify column street varchar(40) not null default ''; alter table volunteers modify column city varchar(30) not null default ''; alter table volunteers modify column state varchar(10) not null default ''; alter table volunteers modify column postal_code varchar(10) not null default ''; alter table volunteers modify column country varchar(30) not null default ''; alter table volunteers modify column email_address varchar(45) not null default '';