明天在装置wordpress3.0.1的时分,写入数据库阶段时呈现了一大片谬误提醒信息:
WordPress database error: [The used table type doesn't support BLOB/TEXT columns]。。。
由提醒信息能够看到应该是数据库引擎不对,查看了一下wordpress的代码,在create table 局部并没有指定数据库引擎。
这时分关上mysql的配置文件找到
# The default storage engine that will be used when create new tables when
default-storage-engine = MEMORY
将默许的引擎修正成:
# The default storage engine that will be used when create new tables when
default-storage-engine = MyISAM
而后重启一下mysql。
这样装置就能顺利经过了。
以上就是安达网络工作室关于《wordpress安装出错的解决方法》的一些看法。更多内容请查看本栏目更多内容!
WordPress网站在改换域名后,需求从新配置以后域名能力使得网站失常运转,很多人遇到过这样的状况,那么如何...
1.增加性能 在function.php中拔出代码 add_theme_support('post-thumbnails'); 拔出之后会在后盾编辑文章的...
get_template_part() 用来援用模板文件,相似于 get_header()、get_sidebar() 和 get_footer(),只不过这个...
get_permalink()(获取文章或页面链接) get_permalink() 用来依据固定衔接前往文章或许页面的链接。在获取...
办法一,用filter发送HTML邮件 发邮件用的函数是wp_mail(),wp_mail()则基于弱小的邮件类phpMailer,所以发...
获取特定分类文章数 有时分咱们想获取某个分类(category)下的文章数目,以便在博客的某个中央显示进去。上面...