sda2p r3 (c) Alastair Campbell 2010.

requirements
------------
  - mysql 5 (tested on 5.1.49)
  - PHP 5 (tested on 5.3.3)
  - a web server (usually apache 2)

installation
------------
  - choose a path under your web server's docroot to install to
    (e.g. for sda2p_r3, base URL would be http://localhost/sda2p_r3/)

  - unpack www directory from distribution ZIP into the chosen directory
    under your web server's docroot

  - create a database under mysql for the software to run from, e.g.:

      mysql> create database sda2p_r3;
      Query OK, 1 row affected (0.38 sec)

  - populate new database with test data from the distribution ZIP:

      mysql> use sda2p_r3;
      Database changed
      mysql> source /path/to/mysqldump_sda2p_r3.txt;
      [...]

configuration
-------------
  - edit the configure_me.php file under the web server's docroot.
    you will want to set up the following:

      - mysql username for web server (SDA_MYSQL_USER)
      - mysql password for web server (SDA_MYSQL_PASS)
      - database name (SDA_MYSQL_DB) if not "sda2p_r3", and
      - the base URL of the application (SDA_URI_BASE)
        ("http://localhost/sda2p_r3/" in this example)
      - you can also turn on mysql query logging,
        or performance profiling logging to the database if you like

running it
----------
  - just point a browser at http://localhost/sda2p_r3/gamelist.php



