又是mysql5的問題啦, 在安裝的時候會出現下面的錯誤訊息:
Database Error: Field 'keywords' doesn't have a default value
解決方法:
打開 /setup/sql/table.php:
Find:
`keywords` TEXT NOT NULL
Replace with:
`keywords` TEXT NOT NULL default ''
總共有兩個地方.
接下來找
Find:
`signature` text NOT NULL,
Replace with:
`signature` text NOT NULL default '',
應該就沒問題了.