解决phpMyAdmin登陆报错问题

linux系统环境,phpMyAdmin 登陆报错:

报错:

没有发现 php 的扩展设置mbstring 而当前系统好像在使用宽字符集。没有 mbstring 扩展的 phpmyadmin 不能正确识别字符串 可能产生不可意料的结果.

linux 下phpmyadmin 无法载如mcrypt 扩展

解决方法:

编译php的时候加上--enable-mbstring

安装libmcrypt-2.5.8.tar.bz2

# ./configure –prefix=/usr/local/libmcrypt
# make
# make install

综述:

编译php(未加入gd库等等功能):

./configure  --prefix=/usr/local/php --with-apxs2=/usr/local/apache/bin/apxs --with-mysql=/usr/local/mysql  --with-pear  --with-gettext --with-zlib --enable-session /
--enable-track-vars --enable-mbstring --with-mcrypt=/usr/local/libmcrypt

 

 

你可能感兴趣的:(解决phpMyAdmin登陆报错问题)