
Installation:

the code currently requires three (3) hardwired paths to be set before
installation:

- the DESTBIN directory in the Makefile must be set to the directory
  in your apache installation where the package will reside

- the database hostname, user, and password must be set in ipp.php

- the location of the ipprc.config file must be specific in
  getimage.php

** TODO: set these with a configure script.

- to update the mysql database from a dump:
  * mysql -u root -p
    create database NAME;
    grant all on NAME.* to ipp@localhost;
  * mysql -u ipp NAME -p < DUMPFILE

- norm exp need to use dettool (-toresid ?) to get the list.

- select * from detNormalizedImfile where detid,iteration
  union select from detStackedImfile where detid,iteration,normalize=0
  
- create users table:
  create database ippadmin;
  use ippadmin;
  create table users (username char(20) not null, password varchar(255));
  insert into users (username, password) values ('eugene', 'test1');

  create table cookies (username char(20) not null, cookie varchar(255));
  insert into cookies (username, cookie) values ('eugene', 'foobar');
