Installation for the impatient follows below...

For those who want a bit information before the decide to
install a new application on their server, please read
doc/index.html


In a hurry ?  Try this:

Grab the tarball at the www.phpgroupware.org site.

Select an installation directory.
	cd /home/httpd/htdocs

Untar the tarball in the directory
	tar -xzvf <some directory>/phpGroupWare-<version>.tar.gz

This will create a sub-directory called "phpgroupware".

Change the ownership of the files, to match the user of the web server.
	Typically this user will be "nobody" or "apache":
	chown -R apache.apache phpgroupware

Setup your web server DocumentRoot to point to the phpgroupware
directory.

Create your database.
	For MySQL:
		Login to MySQL
		> create database phpgroupware;
		> grant all on phpgroupware.* to phpgroupware@localhost identified by '<password>';

  	For PostgreSQL
		> create database phpgroupware;

Create the phpGroupWare header file
	In your browser, go to http://<host>/setup.php
	You will be presented with a form to fill.
	Click on the "Write" button.
	This should work with no problems since the files are owned by the
	web servver user.

Create your phpGroupWare configuration
	When you have written your header file in the step above, you
	will be presented with the main setup menu.
	Click on "Edit your Configuration" button.
	Fill the form with proper informationi and submit.

Create your administrative account
	Once you have submitted the configuration, you will be sent back 
	to the setup menu.  You will see a little (not obvious) link in 
	the second step of setup, called "create tables". Click on it, 
	and it will bring you to a small entry screen, where you will
	be asked an admin account name and password.
	REMEMBER THOSE!

Login for the first time
	Once you have created your new admin account, you might be sent
	directly to the phpgw login screen.
	If thisis not hte case, logout of the setup by clicking on the "logout"
	link on the top left of the form.
	Go to http://<domain>/index.php and this will automatically send you
	to the login screen.  Enter the admin username and password you
	created in the previous step.

That's it.
	Now create user accounts, and start playing.

