반응형
이 에러는 mbstring 모듈을 추가 해주면 해결 됩니다.
The mbstring extension is missing. Please check your PHP configuration.
1. yum install php-mbstring
2. yum --enablerepo=webtatic install php-mbstring
둘 중 되는 것으로 모듈을 추가하면 됩니다.
그런 후 php.ini 파일을 열어서 추가된 모듈을 php에 반영 되도록 환경설정을 해주면 됩니다.
vi /etc/php.ini
;;;;;;;;;;;;;;;;;;;;;;
; Dynamic Extensions ;
; extension=/path/to/extension/msql.so
;
; If you only provide the name of the extension, PHP will look for it in its
; default extension directory.
;;;;
; Note: packaged extension modules are now loaded via the .ini files
; found in the directory /etc/php.d; these are loaded by default.
;;;;
extension=php_mbstring.extension
주황색 부분을 추가 해주고 아파치를 재 실행합니다.
끝..
반응형
'IT > php' 카테고리의 다른 글
php 엑셀 다운로드 상세페이지 쿼리 없이 실행 (0) | 2015.11.28 |
---|---|
php 배열 삭제 자르기 array_splice (0) | 2015.11.25 |
php multipart 사용법 stream_context_create (0) | 2015.11.23 |
php simplexml_load_string xml 파싱 (0) | 2015.11.22 |
array_push — 배열의 끝에 하나 이상의 원소를 넣는다 (0) | 2015.11.05 |