由提示信息可以看到应该是 数据库引擎不对 ,查看了一下wordpress的代码,在CREATE TABLE 部分并没有指定数据库引擎。
这时候打开mysql的配置文件找到
复制代码 代码如下:# The default storage engine that will be used when create new tables whendefault-storage-engine = MEMORY将默认的引擎修改成:
复制代码
代码如下:# The default storage engine that will be used when create new tables whendefault-storage-engine = MyISAM
然后重启一下mysql。这样安装就能顺利通过了。














发表评论