IT/php

The mbstring extension is missing. Please check your PHP configuration.

조원태 2015. 11. 24. 17:48
반응형


이 에러는 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

 


주황색 부분을 추가 해주고 아파치를 재 실행합니다.

끝..

 

반응형