///////////////////////////////////////////// //// softerGLOSSARY //// ///////////////////////////////////////////// /******************************************** / Version: 1.0 / / Date: Feb 23, 2006 / / Copyright: SofterSoftware / / www.softersoftware.com / ///////////////////////////////////////////// Installation Instructions 1. Download either http://softersoftware.com/slothsoft/glossary.zip or http://softersoftware.com/slothsoft/glossary.tgz 1a. Create a directory on your webserver and extract all the files into it 2. Create a mysql database named 'glossary' (or whatever you choose, but if different, make sure to update the $dbname variable in includes/config.inc.php appropriately when you get to step 3). 2a. Run the mysql.sql text file (found in the /install directory) as a SQL statement in your favourite MySQL administration program. Make sure to change the table names if you are using a prefix. 2b. If you desire, also run the sampledata.sql file to preload a number of glossary terms. Make sure to change the table names if you are using a prefix. 3. Open the config.inc.php file from the /includes directory and update the variables at the top with your own settings. 4. Delete the /install directory. 5. The default admin login is: username: admin, password: admin. To change this, run the following as a SQL statement in your favourite MySQL administration program: UPDATE users SET username='uuuuuu', password=MD5('pppppp') WHERE username='admin' replacing uuuuuu with your desired username and pppppp with your desired password. 6. You can now access the glossary at the location you placed the files. For example: http://www.yourservername.com/glossary/ In the above example, the administration would be accessible at http://www.yourservername.com/glossary/admin/ 7. Enjoy!