Movabletype on Xserver

Xserverでは、自動インストール機能でオープンソース版をインストールできるが、この場合、データベースはSQliteを使うことになるので、Mysqlをデータベースに使いたい場合は、


自分で設置する。
手順
1.データベースとデータベースユーザーを準備する。文字コードはUTF-8。
2.サーバーのcgi-binフォルダ内にmtフォルダを作り、そこにmt-staticフォルダ以外のファイルをアップロードする。
3.サーバーのコンテンツが入るディレクトリにmt-staticディレクトリをアップロードする。
4.cgi-bin/mtフォルダ内のcgiファイルのパーミッションを755に変更する。
mt-config.cgiファイルを自PCにて作成(mt-config.cgi.originalをコピーしてmt-config.cgiとして保存し修正する)
(内容)

##          Movable Type configuration file                   ##
##                                                            ##
## This file defines system-wide settings for Movable Type    ##
## In total, there are over a hundred options, but only those ##
## critical for everyone are listed below.                    ##
##                                                            ##
## Information on all others can be found at:                 ##
## http://www.movabletype.org/documentation/appendices/config-directives/ ##

################################################################
##################### REQUIRED SETTINGS ########################
################################################################

# The CGIPath is the URL to your Movable Type directory
CGIPath    http://www.mydomain.com/cgi-bin/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.mydomain.com/mt-static

#================ DATABASE SETTINGS ==================
#   REMOVE all sections below that refer to databases
#   other than the one you will be using.

##### MYSQL #####
ObjectDriver DBI::mysql
Database Database-name
DBUser Database-user
DBPassword Database-password
DBHost mysqlXX.xserver.jp

太字の部分を適宜修正してcgi-bin/mt内にアップロードする。

以降は、http://www.mydomain.com/cgi-bin/mt/mt.cgi にアクセスしてログイン。