晚上在给 wordpress 安装 Related Posts 插件,上传并激活插件后,按照readme的说明,在”Related Posts Options” 下面的“SQL Index Table Setup”点击“this script”的连接,来自动修改数据表支持全文索引,可弹出框却提示:
“Something went wrong. Please check the instructions on how to setup the full text index manually.”
readme 中说 如果自动建立全文索引失败. 你将必须人工设置.并给出了SQL代码:
mysql:
ALTER TABLE `wp_posts` ADD FULLTEXT `post_related` (
`post_name` ,
`post_content`
)
在 phpMyadmin 中执行代码,返回结果
ERROR 1214 “The used table type doesn’t support FULLTEXT indexes ”
“使用的表类型不支持全文索引”? ?
到 phpMyadmin 中看了`wp_posts`表为 …