PHP Fatal error: Uncaught Error: Call to undefined function mb_substr() in
페이지 정보
본문
Fatal error: Uncaught Error: Call to undefined function mb_substr() in /home/happyjung/www/g5/convert/g4_g5_member.php:62 Stack trace: #0 {main} thrown in /home/happyjung/www/g5/convert/g4_g5_member.php on line 62
해결방법
1. Look in your php.ini file.
2. Search for extension= and look through the list of extensions.
If there is one with the name mbstring in it then the extension should be installed.
$ yum install php-mbstring -y
3. If the line is commented out (has a ; in-front of it) then it is not enabled... remove the ;
4. Restart Apache
1. php.ini 를 찾아서 에디터로 엽니다.
2. 내용중에 extension= 을 찾습니다.
만약 mbstring 을 보이지 않는다면 설치합니다.
$ yum install php-mbstring -y
3. ;extension=php_mbstring.dll 를 찾아서 ; 를 제거합니다.
4. 아파치를 재시작합니다.
참고자료
http://amina.co.kr/bbs/board.php?bo_table=apms_qa&wr_id=56220
https://stackoverflow.com/questions/14035698/fatal-error-call-to-undefined-function-mb-substr/14035744
해결방법
1. Look in your php.ini file.
2. Search for extension= and look through the list of extensions.
If there is one with the name mbstring in it then the extension should be installed.
$ yum install php-mbstring -y
3. If the line is commented out (has a ; in-front of it) then it is not enabled... remove the ;
4. Restart Apache
1. php.ini 를 찾아서 에디터로 엽니다.
2. 내용중에 extension= 을 찾습니다.
만약 mbstring 을 보이지 않는다면 설치합니다.
$ yum install php-mbstring -y
3. ;extension=php_mbstring.dll 를 찾아서 ; 를 제거합니다.
4. 아파치를 재시작합니다.
참고자료
http://amina.co.kr/bbs/board.php?bo_table=apms_qa&wr_id=56220
https://stackoverflow.com/questions/14035698/fatal-error-call-to-undefined-function-mb-substr/14035744
댓글목록
등록된 댓글이 없습니다.