INSTALL: Step 1: Back up your Geeklog Database. The birthdays plugin adds tables to your Geeklog database. You can do this with the built in admin backup facility. Step 2: Uncompress the birthdays plugin archive while in the/plugins directory. The archive will create a directory called birthdays in the plugins directory. Step 3: Create the public_html and admin directories. Under your html directory (usually public_html) create a directory called birthdays. Under your admin/plugins/ directory create a directory called birthdays. Step 4: Change to your /plugins/birthdays/ directory. Copy the files in the admin directory to the admin/plugins/birthdays/ directory your created in step 3. Copy the files and directories in the public_html directory to the public_html/birthdays/ directory your created in step 3. Step 5: Edit the config.php in the birthdays directory and confirm the table prefix and anonymous access settings and other display settings. The default is to use the geeklog table prefix and not allow anonymous access. Step 6: Log in to your Geeklog as a root user and run install.php in your admin/plugins/birthdays/ directory. The install page will tell you if the install was successful or not. If not examine Geeklog system errorlog for possible problems. The birthdays plugin should now be installed and functioning. Clicking on the birthdays Icon will take you to the admin page. Step 7: Set up security. On install only the root users have access to birthdays administration and Viewing. You can delegate control for either of these functions through the user and group editors. UNINSTALL: Step 1: Run the install.php page in your admin/plugins/birthdays directory. This will remove all the data from your database. Step 2: Delete the three plugin directories created in the install process: plugins/birthdays/ /birthdays/ and /plugins/birthdays/ BLOCK INSTALL: Step 1: Create a PHPBLOCK type block using the administrative interface. Be certain that you call the block "phpblock_birthdays" Step 2: Add the following code to system/lib-custom.php --start-- /** * Birthday Block * * this is a block that reads from the birthday plugin by mike lynn * */ function phpblock_birthdays() { global $_CONF; include_once($_CONF['path_html'] . "../plugins/birthdays/functions.inc"); $retval = block_birthdays(); return $retval; } --end-- Thats it.