- A+
wordpress网站搬家完成后发现首页打不开500错误,后台能正常进入。
tail -f /etc/httpd/error_log
发现如下报错
PHP Fatal error: Call to undefined function mb_convert_encoding() in /var/www/html/×××/wp-includes/class-wp.php on line 182
首先安装 php-mbstring库文件:
yum install php-mbstring
之后,修改/etc/php.ini文件,在里面加一句
extension=mbstring.so
保存后重启httpd服务。
service httpd restart