Pukiwiki(1.4.7)インストール

環境

phpのインストール

pukiwikiを使うためにはphpが必要

# yum -y install php
# rpm -qa | grep php
php-5.1.6-1.6

httpd.confの変更

pukiwikiを使うためには Apache の設定変更も必要

  • AddType追加
AddType application/x-httpd-php .php
  • DirectoryIndex追加 (index.php)
DirectoryIndex index.html index.html.var index.htm index.php
  • 再起動 ( /etc/init.d/httpd restart )
php動作確認
  • /var/www/html/ に [info.php] を作成し、以下の一行を書く。
 <?php phpinfo(); ?>
  • ブラウザから info.php にアクセスしphpが実行されているかを確認。

Pukiwikiのインストール ( Ver 1.4.7 )