license:
this software (PHP Inventory) is 100% free and may be used free of charge. you may not redistribute for commercial profit.

upgrade:
if you are upgrading from PHP Inventory 1.1, all you have to do is copy "lib" and "templates" directories over existing ones.

installation:
-copy all files to your web host
-use phpmyadmin or your mysql interface to run site.sql to setup your database.
-open site.xml and edit the database section with your database details.
-go to index.php and login with username of admin with a password of test.
-be sure to change the passwords for the admin and regular user.

To change the title of the system edit line 8 of
templates\admin\layout.htm between the <title> tags.

Setup the site.xml file with your database settings as follows.

<database type="mysql">
   <server>database server address</server>
   <login>database login</login>
   <password>database password</password>
   <default>mysql database name</default>
</database>

Add this to your ".htaccess" file to prevent viewing of the xml config file.

</Files ~ ".xml">
Order allow,deny
Deny from all
Satisfy All
</Files>