XREA に MovableType が自動インストールできない場合の対処法
XREA は管理画面のメニューの CGIインストールから WordPress と MovableType Open Source と XOOPS をインストールできる。
しかしながら、MovableType を自動インストールして、Web からアクセスすると、2ページ目から1ページ目に戻ってしまって、インストールが進まない現象が発生する。
これは mt-wizard.cgi が起動できないのが原因。
対処方法は /mt/mt-config.cgi-original をダウンロードして、
中の CGIPath や StaticWebPath、データベース設定を手動で編集して、mt-config.cgi にリネームしてアップロードする。
[code lang=”perl”]
CGIPath http://ユーザ名.サーバ.xrea.com/mt/
# The StaticWebPath is the URL to your mt-static directory
# Note: Check the installation documentation to find out
# whether this is required for your environment. If it is not,
# simply remove it or comment out the line by prepending a “#”.
#StaticWebPath http://www.example.com/mt-static
StaticWebPath http://ユーザ名.サーバ.xrea.com/mt-static
#================ DATABASE SETTINGS ==================
# CHANGE setting below that refer to databases
# you will be using.
##### MYSQL #####
ObjectDriver DBI::mysql
Database DB名
DBUser DBユーザ名
DBPassword DBパスワード
DBHost localhost
## Change setting to language that you want to using.
#DefaultLanguage en_US
#DefaultLanguage de
#DefaultLanguage es
#DefaultLanguage fr
DefaultLanguage ja
#DefaultLanguage nl
[/code]
その後、Webからアクセスするとすんなりインストールできる。