参照URL
Contents Management Systemには様々なものがある。大きく分けるとBlog系統、Wiki系統、その他になるのだと思われるが、Concrete5はいわゆる「その他」に分類される。
今回は、CMSとしてConcrete5を取り上げて、インストールし、設定してみる。
Concrete5で推奨される環境は
となっている。今回の環境では、
で構築を行う。ただし、Apacheのmod_rewrite相当の設定は今のところ明確ではない…。
ともあれ、最小限のインストールに関するメモを以下に。
まずは、前提条件となる環境を構築する。
今回は、全てpkgsrcで導入したので、そちらを参照。
その後、Concrete5のInstallを行う。
# mysql -p Enter Password: Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 19 Server version: 5.0.67-log Source distribution Type 'help;' or '\h' for help. Type '\c' to clear the buffer. mysql> create database concrete5; Query OK, 1 row affected (0.01 sec) mysql> grant all privileges on c5test.* to c5test@localhost identified by 'c5test'; Query OK, 0 rows affected (0.00 sec) mysql> flush privileges; Query OK, 0 rows affected (0.00 sec) mysql> exit Bye #
default_charset = UTF-8 mbstring.language = neutral mbstring.internal_encoding = UTF-8