Writing /volume1/Web/Public/dokuwiki/data/log/deprecated/2024-11-14.log failed
差分
このページの2つのバージョン間の差分を表示します。
次のリビジョン | 前のリビジョン | ||
study:php5:install [2010/02/10 02:07] – created banana | study:php5:install [2010/07/02 08:27] (現在) – banana | ||
---|---|---|---|
行 1: | 行 1: | ||
====== Apache2 + php5 Install ====== | ====== Apache2 + php5 Install ====== | ||
- | Apahce2とphp5をインストール際のメモ書きとして残しておく。 | + | Apahce2とphp5をインストールする際の設定をメモ書きとして残しておく。\\ |
今回インストールに用いたバージョンはそれぞれ[[http:// | 今回インストールに用いたバージョンはそれぞれ[[http:// | ||
- | と[[http:// | + | と[[http:// |
順番にhttpd.confファイルとphp.iniファイルの設定内容を見てみよう。 | 順番にhttpd.confファイルとphp.iniファイルの設定内容を見てみよう。 | ||
===== configuration of httpd.conf ===== | ===== configuration of httpd.conf ===== | ||
- | 以下がdefault以外に追加する内容だ。 詳しいのはreferenceを参考しよう。 | + | 以下がdefault以外に追加する内容だ。 詳しいのは[[study: |
< | < | ||
LoadModule php5_module " | LoadModule php5_module " | ||
行 15: | 行 15: | ||
AddType application/ | AddType application/ | ||
</ | </ | ||
+ | |||
===== configuration of php.ini ===== | ===== configuration of php.ini ===== | ||
次に、php.iniの設定ファイルを見てみよう。 | 次に、php.iniの設定ファイルを見てみよう。 | ||
- | 注目すべきところは%extension_dir%の設定だ。 | + | 注目すべきところは**%%extension_dir%%**の設定だ。\\ |
環境に応じて変えなければいけない。 後は、追加したいモジュールをコメントアウトするだけだ。 | 環境に応じて変えなければいけない。 後は、追加したいモジュールをコメントアウトするだけだ。 | ||
< | < | ||
行 34: | 行 35: | ||
</ | </ | ||
+ | ===== check User/Group in Linux System ===== | ||
+ | linuxシステムにインストールする場合、**User/ | ||
+ | その方法を次に示す。まずはhttp.confファイルの修正部分を次に示す。 | ||
+ | < | ||
+ | < | ||
+ | User apache2 | ||
+ | Group www | ||
+ | </ | ||
+ | </ | ||
+ | 修正が完了したら**%%DocumentRoot%%**の**%%User/ | ||
===== reference ===== | ===== reference ===== | ||
- | - [[http:// | + | - [[http:// |
- | - [[http:// | + | - [[http:// |
+ | - [[http:// | ||
+ | - [[http:// | ||
+ | ~~DISCUSSION~~ | ||