PHPMyAdmin 을 설치 후 실행했을 때 아래와 같은 에러 문구가 나타났을 경우 해결하는 방법
The mbstring PHP extension was not found and you seem to be using multibyte charset. Without mbstring extension phpMyAdmin is unable to split strings correctly and it may result in unexpected results. |
-------------------------------------------------------------------
1. PHP를 RPM으로 설치한 경우 - YUM 을 이용한 방법
# yum install php-mbstring |
-------------------------------------------------------------------
2. PHP를 소스로 설치한 경우
# ./configure --help --enable-mbstring Enable multibyte string support - mbstring 옵션 설정이 있다. # make clean - 이전의 컴파일 정보를 삭제한다. # ./configure --with-apxs2=/usr/local/apache/bin/apxs --with-mysql=/usr/local/mysql --with-config-file-path=/usr/local/apache/conf --with-exec-dir=/usr/local/apache/bin --enable-mbstring - 재컴파일시 --enable-mbstring 을 추가해준다. # make && make install |
'Linux Server 구축 > 1-2. Web Server' 카테고리의 다른 글
제로보드 XE 설치 (2) | 2009.01.28 |
---|---|
GD라이브러리 설치 (0) | 2009.01.28 |
PHPMyAdmin - blowfish_secret 해결방법 (0) | 2009.01.19 |
PHPMyAdmin - mcrypt 문제 해결 방법 (libmcrypt 설치) (0) | 2009.01.16 |
Neither host 'server1' nor 'localhost' could be looked up with /usr/local/mysql/bin/resolveip (0) | 2009.01.15 |
Tomcat 6.0 & Apache Server 연동 중 Servlets 연동 문제 (0) | 2009.01.15 |