1. ダウンロードしたphpGroupWareのソースファイルを、Apache の DocumentRoot ディレクトリに展開します
$ cd /tmp
$ tar xzvf phpgroupware-0.9.16.005.tar.gz
$ cd phpgroupware
$ cvs update -dP
$ su - root
Password:
# cd /tmp
# mv phpgroupware /home/httpd/html
#
|
※ DocumentRoot が /home/httpd/html の場合です。皆様の環境に合わせて変更してください。
|
2. パーミッションを設定します
# chown -R nobody:nobody /home/httpd/html/phpgroupware
# chmod -R 770 /home/httpd/html/phpgroupware
#
|
3. ファイルマネージャ用のフォルダを作成します。
# mkdir -p /var/phpgroupware/files/users
# mkdir -p /var/phpgroupware/files/groups
# chown -R nobody:nobody /var/phpgroupware/files
# chmod -R 700 /var/phpgroupware/files
#
|
※ Apache の DocumentRoot とは異なるディレクトリとしてください。
※ ここでは、/var/phpgroupware/file を指定しています。
|
|