- 在PHP7环境下新安装Typecho默认是使用Pdo_Mysql数据库引擎驱动
- 如果之前Typecho运行环境不是PHP7,后来才升级为PHP7的,那么,需要将你的Typecho数据库引擎修改为Pdo_Mysql
具体实现
将 config.inc.php
文件里的
$db = new Typecho_Db('Mysql', 'typecho_');
修改为
$db = new Typecho_Db('Pdo_Mysql', 'typecho_');
将 config.inc.php
文件里的
$db = new Typecho_Db('Mysql', 'typecho_');
修改为
$db = new Typecho_Db('Pdo_Mysql', 'typecho_');