2001-02-23 07:11:32 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
phpGroupWare Installation
|
2001-01-05 10:17:04 +01:00
|
|
|
|
|
|
|
|
|
Joseph Engo
|
2001-01-12 09:27:27 +01:00
|
|
|
|
|
|
|
|
|
Dan Kuykendall
|
|
|
|
|
|
2001-02-23 07:11:32 +01:00
|
|
|
|
Editor: Darryl VanDorp
|
|
|
|
|
|
2001-01-12 09:27:27 +01:00
|
|
|
|
$Id$
|
|
|
|
|
|
2001-02-23 07:11:32 +01:00
|
|
|
|
Table of Contents
|
|
|
|
|
|
|
|
|
|
1 What is phpGroupWare
|
|
|
|
|
2 Why you should use it
|
|
|
|
|
3 Installation
|
|
|
|
|
3.1 Requirements
|
|
|
|
|
3.2 Tested Systems
|
|
|
|
|
4 Obtaining and Installing phpGroupWare
|
|
|
|
|
4.1 Installing from TarBall
|
|
|
|
|
4.2 Installing from CVS
|
|
|
|
|
4.2.1 Patched Branches in CVS
|
|
|
|
|
4.3 Setting File Permissions
|
|
|
|
|
4.4 Setup the database
|
|
|
|
|
4.4.1 Mysql (assuming an existing and working Mysql install)
|
|
|
|
|
4.4.2 Postgresql (assuming an existing and working Postgresql install)
|
|
|
|
|
4.5 Setup / Configure phpGroupWare
|
|
|
|
|
4.6 Testing the install
|
|
|
|
|
4.7 Installing additional applications
|
|
|
|
|
5 Trouble Shooting
|
|
|
|
|
5.1 It seems to hang when I try to read my mail
|
|
|
|
|
5.2 When I log in I see the directory listing instead of a web page
|
|
|
|
|
5.3 I get garbage that looks like code when I go to the phpGroupWare URL
|
|
|
|
|
6 About this document
|
|
|
|
|
6.1 History
|
|
|
|
|
6.2 Version History
|
|
|
|
|
|
2001-01-17 09:44:54 +01:00
|
|
|
|
|
|
|
|
|
|
2001-01-12 09:27:27 +01:00
|
|
|
|
Dedication
|
|
|
|
|
|
|
|
|
|
Thanks to Joesph Engo for starting phpGroupWare (at the time
|
|
|
|
|
called webdistro) and the core of this HOWTO. Thanks to
|
|
|
|
|
all the developers and users who contribute to making phpGroupWare
|
|
|
|
|
such a success.
|
|
|
|
|
|
|
|
|
|
1 What is phpGroupWare
|
|
|
|
|
|
|
|
|
|
phpGroupWare is a web based GroupWare system. It comes with
|
|
|
|
|
serveral core apps for email, calendar, todo list, address
|
|
|
|
|
book, file manager, and a notepad.
|
|
|
|
|
|
|
|
|
|
It also provides a framework for add-on applications to integrate
|
|
|
|
|
seamlessly in phpGroupWare. Some samples are a bookmark
|
|
|
|
|
manager, a trouble ticket system, a weather reporter, a
|
|
|
|
|
phone log, a chat program, and a forum system. There are
|
|
|
|
|
many more in development, and you can develop your own as
|
|
|
|
|
well.
|
|
|
|
|
|
|
|
|
|
2 Why you should use it
|
|
|
|
|
|
|
|
|
|
You should use it if you would like a powerful groupware
|
|
|
|
|
system that can be access from anywhere on the Internet,
|
|
|
|
|
and allows for custom add-ons. For companies with a distributed
|
|
|
|
|
user base, it's an ideal solution. Oh, and did I mention
|
|
|
|
|
that its FREE?
|
|
|
|
|
|
|
|
|
|
3 Installation
|
|
|
|
|
|
|
|
|
|
Installation and Configuration of phpGroupWare has never
|
|
|
|
|
been easier. Just point and click, yeah it's very easy.
|
|
|
|
|
|
|
|
|
|
Since this is still a beta version we do expect some bugs.
|
|
|
|
|
By carefully reading this document you can easly install
|
|
|
|
|
phpGroupWare.
|
|
|
|
|
|
|
|
|
|
3.1 Requirements
|
|
|
|
|
|
|
|
|
|
You will need PHP compiled and installed on your system.
|
|
|
|
|
You will also need MySQL or PostgreSQL setup. If you are
|
|
|
|
|
planning on using the email system, you will need to have
|
|
|
|
|
an IMAP server installed and IMAP support compiled into
|
|
|
|
|
PHP. You can have it installed as an Apache module or command
|
|
|
|
|
line version, the Apache module is preferred. We will assume
|
|
|
|
|
that you are running on a Linux or other Unix system for
|
|
|
|
|
these steps. Windows is supported, but there is no documentation
|
|
|
|
|
for it currently.
|
|
|
|
|
|
2001-01-17 09:44:54 +01:00
|
|
|
|
In order to check if you have php installed create the file
|
|
|
|
|
with your favorite text editor named test.php in your webserver
|
|
|
|
|
root directory:
|
|
|
|
|
|
|
|
|
|
<? phpinfo(); ?>
|
|
|
|
|
|
|
|
|
|
Then point your browser to http://yourserverroot/test.php.
|
|
|
|
|
You should get a very detailed page describing various options
|
|
|
|
|
in php.
|
|
|
|
|
|
|
|
|
|
If you need to to compile php and apache the following links
|
|
|
|
|
are good starting points:
|
|
|
|
|
|
|
|
|
|
A set of scripts to compile and install various modules with
|
|
|
|
|
apache: [http://www.apachetoolbox.com]
|
|
|
|
|
|
|
|
|
|
The Linux Apache MySQL PHP (LAMP) Guide v2 (latest as of
|
|
|
|
|
this writing): [http://www.linuxhelp.net/guides/]
|
|
|
|
|
|
|
|
|
|
The Soothing Seemless Setup of Apache, SSL, MySQL, and PHP: [http://www.devshed.com/Server_Side/PHP/SoothinglySeamless]
|
|
|
|
|
|
2001-01-12 09:27:27 +01:00
|
|
|
|
3.2 Tested Systems
|
|
|
|
|
|
|
|
|
|
On Linux 2.2.x, 2.4.x
|
|
|
|
|
|
|
|
|
|
PHP 3.0.15+ / PHP 4.0.x
|
|
|
|
|
|
|
|
|
|
Apache 1.3.x
|
|
|
|
|
|
|
|
|
|
MySQL 3.22.25 or PostgreSQL 7.0.x
|
|
|
|
|
|
|
|
|
|
Courier-IMAP 0.33+ and/or qmail 1.03 for POP3 access
|
|
|
|
|
|
|
|
|
|
We have reports of it working on Windows NT and OS/2, and
|
|
|
|
|
using Oracle as the database.
|
|
|
|
|
|
|
|
|
|
4 Obtaining and Installing phpGroupWare
|
|
|
|
|
|
|
|
|
|
After you have met the system requirements, You can install
|
|
|
|
|
it from the TarBall or you can get it directly from CVS.
|
|
|
|
|
|
|
|
|
|
4.1 Installing from TarBall
|
|
|
|
|
|
|
|
|
|
Installing from a TarBall is very easy. The files should
|
|
|
|
|
be installed in the webserver directory. Example steps (please
|
|
|
|
|
adjust to your servers config):
|
|
|
|
|
|
2001-01-05 10:17:04 +01:00
|
|
|
|
cp phpgroupware-version.tar.gz /home/httpd/html
|
2001-01-12 09:27:27 +01:00
|
|
|
|
|
2001-01-05 10:17:04 +01:00
|
|
|
|
cd /home/httpd/html
|
2001-01-12 09:27:27 +01:00
|
|
|
|
|
2001-01-05 10:17:04 +01:00
|
|
|
|
tar zxf phpgroupware-version.tar.gz
|
2001-01-12 09:27:27 +01:00
|
|
|
|
|
|
|
|
|
You may have to get required permissions to do this. Contact
|
|
|
|
|
your system administrator if you dont have the permission
|
|
|
|
|
to write to your webserver directory.
|
|
|
|
|
|
|
|
|
|
You can get current releases of phpGroupWare at the phpGroupware
|
|
|
|
|
website ().
|
|
|
|
|
|
|
|
|
|
4.2 Installing from CVS
|
|
|
|
|
|
|
|
|
|
Installing from a CVS is fairly easy. The files should be
|
|
|
|
|
checked out in the webserver directory. Example steps (please
|
|
|
|
|
adjust to your servers config):
|
|
|
|
|
|
2001-02-23 07:11:32 +01:00
|
|
|
|
* cd /home/httpd/html
|
2001-01-12 09:27:27 +01:00
|
|
|
|
|
2001-02-23 07:11:32 +01:00
|
|
|
|
* cvs -d:pserver:anonymous@cvs.phpgroupware.sourceforge.net:/cvsroot/phpgroupware
|
|
|
|
|
login (just hit enter if prompted for a password)
|
2001-01-12 09:27:27 +01:00
|
|
|
|
|
2001-02-23 07:11:32 +01:00
|
|
|
|
* cvs -z3 -d:pserver:anonymous@cvs.phpgroupware.sourceforge.net:/cvsroot/phpgroupware
|
|
|
|
|
co phpgroupware
|
2001-01-12 09:27:27 +01:00
|
|
|
|
|
|
|
|
|
or if you prefer using CVSROOT:
|
|
|
|
|
|
2001-02-23 07:11:32 +01:00
|
|
|
|
* export CVSROOT=':pserver:anonymous@cvs.phpgroupware.sourceforge.net:/cvsroot/phpgroupware'
|
2001-01-12 09:27:27 +01:00
|
|
|
|
|
2001-02-23 07:11:32 +01:00
|
|
|
|
* cvs login (just hit enter if prompted for a password)
|
2001-01-12 09:27:27 +01:00
|
|
|
|
|
2001-02-23 07:11:32 +01:00
|
|
|
|
* cvs co phpgroupware
|
2001-01-12 09:27:27 +01:00
|
|
|
|
|
|
|
|
|
You may have to get required permissions to do this. Contact
|
|
|
|
|
your system administrator if you dont have the permission
|
|
|
|
|
to write to your webserver directory.
|
|
|
|
|
|
2001-02-23 07:11:32 +01:00
|
|
|
|
4.2.1 Patched Branches in CVS
|
|
|
|
|
|
|
|
|
|
Recently the phpGroupWare developers started a branch for
|
|
|
|
|
patches to released versions. This is to facilitate bugs
|
|
|
|
|
being fixed in a released version without having to wait
|
|
|
|
|
for the next offical release. There is a developer who has
|
|
|
|
|
been assigned the responsibility for maintaining that branch
|
|
|
|
|
and applying patches and fixes. To check out this version
|
|
|
|
|
of the code using 0.9.9 as an example you would do the following:
|
|
|
|
|
|
|
|
|
|
* login to cvs anonymously as described above
|
|
|
|
|
|
|
|
|
|
* cvs -z3 -d:pserver:anonymous@cvs.phpgroupware.sourceforge.net:/cvsroot/phpgroupware
|
|
|
|
|
-r Version-0_9_9-patches phpgroupware
|
|
|
|
|
|
2001-01-12 09:27:27 +01:00
|
|
|
|
4.3 Setting File Permissions
|
|
|
|
|
|
|
|
|
|
There are a few directories which will need special fie permissions
|
|
|
|
|
set for phpGroupWare to work properly.
|
|
|
|
|
|
|
|
|
|
Temp Directory (Required) - This can be /tmp for simplicity,
|
|
|
|
|
but it is required for several apps to function properly.
|
|
|
|
|
Simply make sure that the webserver can add/delete files
|
|
|
|
|
in it.
|
|
|
|
|
|
|
|
|
|
Files Directory (Required) - This can be should be the files
|
|
|
|
|
dir under the phpgroupware dir. You will need to give the
|
|
|
|
|
webserver account owndership of this directory.
|
|
|
|
|
|
2001-02-23 07:11:32 +01:00
|
|
|
|
chown nobody:nobody (note: this assumes your webserver runs
|
|
|
|
|
as user nobody, adjust for your installation)
|
2001-01-12 09:27:27 +01:00
|
|
|
|
|
2001-01-05 10:17:04 +01:00
|
|
|
|
chmod 700 /home/httpd/html/phpgroupware/files
|
2001-01-12 09:27:27 +01:00
|
|
|
|
|
|
|
|
|
Root Directory (Not recommended) - If you give the webserver
|
|
|
|
|
account write access to the phpgroupware directory, then
|
|
|
|
|
the setup program can create the header.inc.php for you.
|
|
|
|
|
Otherwise you will need to use the setup program to create
|
|
|
|
|
it, and then you can manually save it to file.
|
|
|
|
|
|
2001-01-05 10:17:04 +01:00
|
|
|
|
If you want to do it:
|
2001-01-12 09:27:27 +01:00
|
|
|
|
|
2001-01-05 10:17:04 +01:00
|
|
|
|
chown :nobody /home/httpd/html/phpgroupware
|
2001-01-12 09:27:27 +01:00
|
|
|
|
|
2001-01-05 10:17:04 +01:00
|
|
|
|
chmod 770
|
|
|
|
|
|
2001-01-12 09:27:27 +01:00
|
|
|
|
You may have to get required permissions to do this. Contact
|
|
|
|
|
your system administrator if you dont have the permission
|
|
|
|
|
to write to your webserver directory.
|
|
|
|
|
|
|
|
|
|
4.4 Setup the database
|
|
|
|
|
|
2001-01-17 09:44:54 +01:00
|
|
|
|
You need to create empty databases for the setup app to create
|
|
|
|
|
the tables in.
|
|
|
|
|
|
2001-01-12 09:27:27 +01:00
|
|
|
|
4.4.1 Mysql (assuming an existing and working Mysql install)
|
|
|
|
|
|
|
|
|
|
* Mandrake or Redhat: /etc/rc.d/init.d/mysqld start
|
|
|
|
|
|
|
|
|
|
* other: /usr/local/mysql/bin/safe_mysqld &
|
|
|
|
|
|
|
|
|
|
* create the empty database: mysqldadmin -u someuser create
|
|
|
|
|
phpgroupware -p
|
|
|
|
|
|
|
|
|
|
* login to mysql: mysql -u someuser -p
|
2001-01-05 10:17:04 +01:00
|
|
|
|
|
2001-01-12 09:27:27 +01:00
|
|
|
|
* issue the following at the mysql prompt:
|
2001-01-05 10:17:04 +01:00
|
|
|
|
|
2001-01-12 09:27:27 +01:00
|
|
|
|
* grant all on phpgroupware.* to phpgroupware@localhost identified
|
|
|
|
|
by "somepassword";
|
2001-01-05 10:17:04 +01:00
|
|
|
|
|
2001-01-12 09:27:27 +01:00
|
|
|
|
For more detailed user documentation on Mysql see their website
|
|
|
|
|
: [http://www.mysql.com]
|
2001-01-05 10:17:04 +01:00
|
|
|
|
|
2001-01-12 09:27:27 +01:00
|
|
|
|
4.4.2 Postgresql (assuming an existing and working Postgresql
|
|
|
|
|
install)
|
2001-01-05 10:17:04 +01:00
|
|
|
|
|
2001-01-12 09:27:27 +01:00
|
|
|
|
To create the required database in Postgresql make sure postgresql
|
|
|
|
|
is started:
|
2001-01-05 10:17:04 +01:00
|
|
|
|
|
2001-01-12 09:27:27 +01:00
|
|
|
|
* Mandrake or Redhat : /etc/rc.d/init.d/postgresql start
|
2001-01-05 10:17:04 +01:00
|
|
|
|
|
2001-01-17 09:44:54 +01:00
|
|
|
|
* others: /usr/bin/postmaster -D /var/lib/pgsql/data or /usr/bin/pg_ctl
|
|
|
|
|
-D /var/lib/pgsq/data start (adjust for your install dirs)
|
2001-01-05 10:17:04 +01:00
|
|
|
|
|
2001-01-17 09:44:54 +01:00
|
|
|
|
* create the empty database: /usr/bin/createdb phpgroupware
|
2001-01-05 10:17:04 +01:00
|
|
|
|
|
2001-02-23 07:11:32 +01:00
|
|
|
|
* create a database user: /usr/bin/createuser phpgroupware
|
|
|
|
|
|
2001-01-12 09:27:27 +01:00
|
|
|
|
For more detailed user documentation on Postgresql see their
|
|
|
|
|
website : [http://www.postgresql.org]
|
2001-01-05 10:17:04 +01:00
|
|
|
|
|
2001-01-12 09:27:27 +01:00
|
|
|
|
4.5 Setup / Configure phpGroupWare
|
2001-01-05 10:17:04 +01:00
|
|
|
|
|
2001-01-17 09:44:54 +01:00
|
|
|
|
Point your browser to http://yourserverroot/phpgroupware/setup/
|
|
|
|
|
which will create (or upgrade) the header.inc.php and database
|
|
|
|
|
tables. Setup will attempt to determine what version of
|
|
|
|
|
the phpGroupWare databases and header.inc.php you have installed,
|
|
|
|
|
and upgrade to the most recent version.
|
2001-01-05 10:17:04 +01:00
|
|
|
|
|
2001-01-17 09:44:54 +01:00
|
|
|
|
Note: You are advised to backup your existing database before
|
|
|
|
|
running the setup script to avoid problems!
|
2001-01-05 10:17:04 +01:00
|
|
|
|
|
2001-01-12 09:27:27 +01:00
|
|
|
|
4.6 Testing the install
|
2001-01-05 10:17:04 +01:00
|
|
|
|
|
2001-01-12 09:27:27 +01:00
|
|
|
|
If your config is setup properly you can now login. Point
|
|
|
|
|
your browser to the installed location and login with the
|
|
|
|
|
username demo and the password is 1234
|
2001-01-05 10:17:04 +01:00
|
|
|
|
|
2001-01-12 09:27:27 +01:00
|
|
|
|
At this point it would be a good idea to create a new user
|
|
|
|
|
with administrative privileges and delete the old one.
|
2001-01-05 10:17:04 +01:00
|
|
|
|
|
2001-01-12 09:27:27 +01:00
|
|
|
|
4.7 Installing additional applications
|
2001-01-05 10:17:04 +01:00
|
|
|
|
|
2001-01-12 09:27:27 +01:00
|
|
|
|
Once you have the core phpGroupWare install up and running,
|
|
|
|
|
you may want to download and install additional applications.
|
2001-01-05 10:17:04 +01:00
|
|
|
|
|
2001-01-12 09:27:27 +01:00
|
|
|
|
You should consult any README or INSTALL files that come
|
|
|
|
|
with the new application first, as most require you to create
|
|
|
|
|
additional tables in the database, and add additional translation
|
|
|
|
|
data to the lang table (typically a file called lang.sql)
|
2001-01-05 10:17:04 +01:00
|
|
|
|
|
2001-01-12 09:27:27 +01:00
|
|
|
|
You install the new application within the phpGroupWare install
|
|
|
|
|
tree by copying the application directory into the phpGroupWare
|
|
|
|
|
install location, and enabling the application through the
|
|
|
|
|
Administration page.
|
2001-01-05 10:17:04 +01:00
|
|
|
|
|
2001-01-12 09:27:27 +01:00
|
|
|
|
For example, this is the process to install the Headlines
|
|
|
|
|
application:
|
2001-01-05 10:17:04 +01:00
|
|
|
|
|
2001-01-12 09:27:27 +01:00
|
|
|
|
(see [http://www.sourceforge.net/projects/phpgwapps]
|
|
|
|
|
for more applications)
|
2001-01-05 10:17:04 +01:00
|
|
|
|
|
2001-01-12 09:27:27 +01:00
|
|
|
|
Download the .tar.gz file for the application, or check out
|
|
|
|
|
the source with cvs with
|
2001-01-05 10:17:04 +01:00
|
|
|
|
|
2001-01-12 09:27:27 +01:00
|
|
|
|
export CVSROOT=':pserver:anonymous@cvs.phpgroupware.sourceforge.net:/cvsroot/phpgwapps'
|
2001-01-05 10:17:04 +01:00
|
|
|
|
|
2001-01-12 09:27:27 +01:00
|
|
|
|
cvs login (just hit enter if prompted for a password)
|
2001-01-05 10:17:04 +01:00
|
|
|
|
|
2001-01-12 09:27:27 +01:00
|
|
|
|
cvs co headlines
|
|
|
|
|
|
|
|
|
|
Move the headlines directory into your phpGroupWare install
|
|
|
|
|
directory.
|
|
|
|
|
|
|
|
|
|
Log into phpGroupWare as an administrative user, and go to
|
|
|
|
|
the Administration page.
|
|
|
|
|
|
|
|
|
|
In the first section, choose the Applications link.
|
2001-01-05 10:17:04 +01:00
|
|
|
|
|
2001-01-12 09:27:27 +01:00
|
|
|
|
Click on add, and fill in the form.
|
2001-01-05 10:17:04 +01:00
|
|
|
|
|
2001-01-12 09:27:27 +01:00
|
|
|
|
Application name should be identical to the name of the directory
|
|
|
|
|
you moved into the phpGroupWare install, in this case use
|
|
|
|
|
headlines
|
2001-01-05 10:17:04 +01:00
|
|
|
|
|
2001-01-12 09:27:27 +01:00
|
|
|
|
Application Title is shown in the navigation bar and other
|
|
|
|
|
places to refer to the new application. Enter Headlines
|
|
|
|
|
for this example.
|
2001-01-05 10:17:04 +01:00
|
|
|
|
|
2001-01-12 09:27:27 +01:00
|
|
|
|
Enabled can be used to disable an application for all users
|
|
|
|
|
temporially. You should normal check the box to enable the
|
|
|
|
|
application.
|
2001-01-05 10:17:04 +01:00
|
|
|
|
|
2001-01-12 09:27:27 +01:00
|
|
|
|
Back in the Administration page, you need to enable the application
|
|
|
|
|
for specific users or user groups by editing them, and checking
|
|
|
|
|
the new Headlines box that appears in the middle of the
|
|
|
|
|
account editing page.
|
2001-01-05 10:17:04 +01:00
|
|
|
|
|
2001-01-12 09:27:27 +01:00
|
|
|
|
Once you have added the Headlines app to your account, you
|
|
|
|
|
should see a Headlines entry in the Administration and Preferences
|
|
|
|
|
pages, and there should be an icon for the Headlines application
|
|
|
|
|
in the navigation bar.
|
2001-01-05 10:17:04 +01:00
|
|
|
|
|
2001-01-12 09:27:27 +01:00
|
|
|
|
Once you enable a few of the Headlines sites through the
|
|
|
|
|
Administration page link, you should see headlines grabbed
|
|
|
|
|
from the sites you selected when you click on the Headlines
|
|
|
|
|
icon in the navigation bar.
|
2001-01-05 10:17:04 +01:00
|
|
|
|
|
2001-01-12 09:27:27 +01:00
|
|
|
|
5 Trouble Shooting
|
2001-01-05 10:17:04 +01:00
|
|
|
|
|
2001-01-12 09:27:27 +01:00
|
|
|
|
Warning
|
2001-01-05 10:17:04 +01:00
|
|
|
|
|
2001-01-12 09:27:27 +01:00
|
|
|
|
phpGroupWare is still Beta software, expect some bugs along
|
|
|
|
|
the way. If you run into a problem not discussed here, contact
|
|
|
|
|
us through one of the methods listed on the website.
|
2001-01-05 10:17:04 +01:00
|
|
|
|
|
2001-01-12 09:27:27 +01:00
|
|
|
|
<EFBFBD>The phpGroupWare developers can most often be seen hanging
|
|
|
|
|
out in #phpGroupWare on irc.openprojects.net if you require
|
|
|
|
|
real-time help.
|
2001-01-05 10:17:04 +01:00
|
|
|
|
|
2001-01-12 09:27:27 +01:00
|
|
|
|
Also check the FAQ in this directory for additional common
|
|
|
|
|
questions, it is available as FAQ.sgml, FAQ.txt and FAQ.html
|
2001-01-05 10:17:04 +01:00
|
|
|
|
|
2001-01-12 09:27:27 +01:00
|
|
|
|
5.1 It seems to hang when I try to read my mail
|
2001-01-05 10:17:04 +01:00
|
|
|
|
|
2001-01-12 09:27:27 +01:00
|
|
|
|
This is often a problem if you are using POP3 instead of
|
|
|
|
|
IMAP, and you have more than a few hundred messages in your
|
|
|
|
|
mailbox.
|
|
|
|
|
|
|
|
|
|
By default, php is set up to time-out a request that takes
|
|
|
|
|
over 30 seconds to complete. phpGroupWare must do a lot
|
|
|
|
|
of work the first time your POP3 mailbox is opened, and
|
|
|
|
|
every time you get new mail, which may take more than the
|
|
|
|
|
30 second timeout.
|
|
|
|
|
|
|
|
|
|
You can either clean up your mailbox with another mail program,
|
|
|
|
|
or add the line
|
|
|
|
|
|
|
|
|
|
set_time_limit(0);
|
2001-01-05 10:17:04 +01:00
|
|
|
|
|
2001-01-12 09:27:27 +01:00
|
|
|
|
to the top of the phpgwapi/inc/phpgw_msg_pop3.inc.php file,
|
|
|
|
|
just before the line class msg extends msg_common
|
2001-01-05 10:17:04 +01:00
|
|
|
|
|
2001-01-12 09:27:27 +01:00
|
|
|
|
If you choose to edit the file, be patient when loading a
|
|
|
|
|
large POP3 mailbox - the author tested against a mailbox
|
|
|
|
|
with 2500 messages in it, but it took 15 minutes to load
|
|
|
|
|
the page. We highly suggest you use IMAP if you expect to
|
|
|
|
|
have more than a few hundred messages in your mailbox.
|
2001-01-05 10:17:04 +01:00
|
|
|
|
|
2001-01-12 09:27:27 +01:00
|
|
|
|
5.2 When I log in I see the directory listing instead of a
|
|
|
|
|
web page
|
2001-01-05 10:17:04 +01:00
|
|
|
|
|
2001-01-12 09:27:27 +01:00
|
|
|
|
You are using Apache, this often means you need to add .php
|
|
|
|
|
to the DirectoryIndex line in your httpd.conf file. For
|
|
|
|
|
example:
|
2001-01-05 10:17:04 +01:00
|
|
|
|
|
2001-01-12 09:27:27 +01:00
|
|
|
|
DirectoryIndex index.php index.php3 index.html index.htm
|
|
|
|
|
index.cgi
|
2001-01-05 10:17:04 +01:00
|
|
|
|
|
2001-01-12 09:27:27 +01:00
|
|
|
|
5.3 I get garbage that looks like code when I go to the phpGroupWare
|
|
|
|
|
URL
|
2001-01-05 10:17:04 +01:00
|
|
|
|
|
2001-01-12 09:27:27 +01:00
|
|
|
|
This is often because you have php3 installed, which does
|
|
|
|
|
not map .php to the PHP engine. For PHP3:
|
2001-01-05 10:17:04 +01:00
|
|
|
|
|
2001-01-12 09:27:27 +01:00
|
|
|
|
AddType application/x-httpd-php3 .php3 .php
|
2001-01-05 10:17:04 +01:00
|
|
|
|
|
2001-01-12 09:27:27 +01:00
|
|
|
|
For PHP4:
|
2001-01-05 10:17:04 +01:00
|
|
|
|
|
2001-01-12 09:27:27 +01:00
|
|
|
|
AddType application/x-httpd-php .php3 .php
|
2001-01-05 10:17:04 +01:00
|
|
|
|
|
2001-01-12 09:27:27 +01:00
|
|
|
|
6 About this document
|
2001-01-05 10:17:04 +01:00
|
|
|
|
|
2001-01-12 09:27:27 +01:00
|
|
|
|
The newest version of this document can be found on our website
|
|
|
|
|
[http://www.phpgroupware.org] as lyx source, HTML, or TEXT.
|
2001-01-05 10:17:04 +01:00
|
|
|
|
|
2001-01-12 09:27:27 +01:00
|
|
|
|
Comments on this HOWTO should be directed to the phpGroupWare
|
|
|
|
|
developers mailing list phpgroupware-developers@lists.sourceforge.net
|
2001-01-05 10:17:04 +01:00
|
|
|
|
|
2001-01-12 09:27:27 +01:00
|
|
|
|
To subscribe, go to _id=7305
|
2001-01-05 10:17:04 +01:00
|
|
|
|
|
2001-01-12 09:27:27 +01:00
|
|
|
|
6.1 History
|
2001-01-05 10:17:04 +01:00
|
|
|
|
|
2001-01-12 09:27:27 +01:00
|
|
|
|
This document was started by Joseph Engo reworked by Dan
|
2001-02-23 07:11:32 +01:00
|
|
|
|
Kuykendall then edited by Darryl VanDorp
|
2001-01-05 10:17:04 +01:00
|
|
|
|
|
2001-01-12 09:27:27 +01:00
|
|
|
|
6.2 Version History
|
2001-01-05 10:17:04 +01:00
|
|
|
|
|
2001-01-12 09:27:27 +01:00
|
|
|
|
Old Version
|
2001-01-05 10:17:04 +01:00
|
|
|
|
|
2001-01-12 09:27:27 +01:00
|
|
|
|
Created by Jengo, wasn't in SGML HOWTO format.
|
2001-01-05 10:17:04 +01:00
|
|
|
|
|
2001-01-12 09:27:27 +01:00
|
|
|
|
v1.0 (July 6, 2000)
|
2001-01-05 10:17:04 +01:00
|
|
|
|
|
2001-01-12 09:27:27 +01:00
|
|
|
|
Built proper SGML version.
|
2001-01-05 10:17:04 +01:00
|
|
|
|
|
2001-01-12 09:27:27 +01:00
|
|
|
|
Included the FAQ.
|
2001-01-05 10:17:04 +01:00
|
|
|
|
|
2001-01-12 09:27:27 +01:00
|
|
|
|
Other minor additions.
|
2001-01-05 10:17:04 +01:00
|
|
|
|
|
2001-01-12 09:27:27 +01:00
|
|
|
|
v1.1 (September 27-29, 2000) - blinky
|
2001-01-05 10:17:04 +01:00
|
|
|
|
|
2001-01-12 09:27:27 +01:00
|
|
|
|
Added Testing Install section
|
2001-01-05 10:17:04 +01:00
|
|
|
|
|
2001-01-12 09:27:27 +01:00
|
|
|
|
Added Trouble-shooting section
|
2001-01-05 10:17:04 +01:00
|
|
|
|
|
2001-01-12 09:27:27 +01:00
|
|
|
|
Added description of application installation
|
2001-01-05 10:17:04 +01:00
|
|
|
|
|
2001-01-12 09:27:27 +01:00
|
|
|
|
Changes for the new setup program
|
2001-01-05 10:17:04 +01:00
|
|
|
|
|
2001-01-12 09:27:27 +01:00
|
|
|
|
v0.01 (October 15 , 2000) - gnrfan , Converted the HOWTO
|
|
|
|
|
to DocBook format
|
2001-01-05 10:17:04 +01:00
|
|
|
|
|
2001-01-12 09:27:27 +01:00
|
|
|
|
v.0.05 (November 5, 2000) - gnrfan , Completely revamped
|
|
|
|
|
according to Seek's idea and intregrated the Developers
|
|
|
|
|
HOWTO.
|
2001-01-05 10:17:04 +01:00
|
|
|
|
|
2001-01-12 09:27:27 +01:00
|
|
|
|
v.0.06 (Jan 10, 2001) - Darryl VanDorp, imported to lyx source
|
|
|
|
|
reformatted and touched up some sections
|
2001-01-17 09:44:54 +01:00
|
|
|
|
|
|
|
|
|
v.0.07 (Jan 16, 2001) - Darryl VanDorp, added TOC, fixed
|
|
|
|
|
some Postgresql setup instructions, added some links to
|
2001-02-23 07:11:32 +01:00
|
|
|
|
install/compilation instructions for apache, php and mysql.`
|
|
|
|
|
|
|
|
|
|
v.0.08 (Feb 22, 2001) - Darryl VanDorp, added a multipart
|
|
|
|
|
html export
|