我的mysql数据库在wamp有什么问题?

时间:2014-02-17 06:34:49

标签: php mysql wordpress

我已经在本地空间成功安装了wordpress,每次我可以进入我的wordpress,没有问题发生。今天当我输入127.0.0.1\wordpress时,输出错误

Your PHP installation appears to be missing the MySQL extension which is required by WordPress.    

当我输入http://127.0.0.1/phpmyadmin/进入管理员时,

Fatal error: Call to undefined function mb_detect_encoding() in C:\BitNami\wampstack-5.4.24-0\apps\phpmyadmin\htdocs\libraries\php-gettext\gettext.inc on line 177 

第177行包含$source_encoding = mb_detect_encoding($text);

function _encode($text) {
    $source_encoding = mb_detect_encoding($text);
    $target_encoding = _get_codeset();
    if ($source_encoding != $target_encoding) {
        return mb_convert_encoding($text, $target_encoding, $source_encoding);
    }
    else {
        return $text;
    }
} 

我该如何解决?

1 个答案:

答案 0 :(得分:0)

您需要在WAMP上启用mb_string扩展名。这是一个单独的扩展,您需要启用它。

因为你在WAMP。单击系统托盘上的绿色W图标,然后按照屏幕截图所示进行操作。

怎么办?

Click W Icon -> PHP -> PHP Extensions -> php_mbstring

enter image description here

之后重新启动WAMP服务器以使更改生效。