【Linux】オープンソースなメールマガジン発行システムphplistのインストールと日本語化
phplist というオープンソースなメール配信システムをインストール、調査したときのメモ。環境はCentOS5.3+Xampp for linux(lampp) 1.7.1 lamppのインストールは こちらの記事 を参考に。 ここ からダウンロードしてきてサーバーで解凍。 # tar xzvf phplist-2.10.10.tgz.gz <2009/09/02 追記> 2.10.10はバグがあるみたいなので、2.10.9を使うのがお勧め。 ここ から日本語化されているのをダウンロードできる。下の方に書いてある日本語化する処理をしなくてよくなる。 適当なディレクトリに移動 #mv phplist-2.10.10 /opt/phplist MySQLにphplist用のデータベースを作成(utf8_general_ciで)。xamppの管理画面からphpmyadminにアクセスして作成。アクセスできるユーザーも適宜作成。 設定ファイルを修正 # vi phplist/public_html/lists/config/config.php # what is your Mysql database server $database_host = "localhost"; # what is the name of the database we are using $database_name = "phplistdb"; # who do we log in as? $database_user = "phplist"; # and what password do we use $database_password = 'phplist'; apacheの設定ファイルを修正。 <VirtualHost *:80> DocumentRoot /opt/wordpress-phplist ServerName phplist.exbridge.jp <Directory />