반응형
Composer - 요청된 PHP 확장 mbstring이 시스템에 없습니다.
최근에 Composer를 통해 패키지를 설치하려고 했지만 오류가 발생했습니다.the requested PHP extension mbstring is missing from your system.
세미콜론을 제거했습니다.php.ini
하지만 여전히 작동하지 않습니다.어떻게 해야 하나?
sudo apt-get install php-mbstring
# if your are using php 7.1
sudo apt-get install php7.1-mbstring
# if your are using php 7.2
sudo apt-get install php7.2-mbstring
# if your are using php 7.4
sudo apt-get install php7.4-mbstring
- 를 검색하다
php.ini
- 지시를 확실히 하다
extension_dir=C:\path\to\server\php\ext
경로를 설정하고 조정합니다(PHP 확장 dir 설정). - 지시를 확실히 하다
extension=php_mbstring.dll
설정(비색인)
이것이 동작하지 않고 php_mbstring.dll 파일이 없는 경우 이 스택의 PHP 설치가 단순히 중단됩니다.
php 7.1의 경우
sudo apt-get install php7.1-mbstring
건배!
PHPRC 변수를 설정하고 주석 없이zend_extension=php_opcache.dll
에php.ini
모두 잘 되고 있습니다.
언급URL : https://stackoverflow.com/questions/32488917/composer-the-requested-php-extension-mbstring-is-missing-from-your-system
반응형
'source' 카테고리의 다른 글
Java에서 INI 파일을 해석하는 가장 쉬운 방법은 무엇입니까? (0) | 2022.11.15 |
---|---|
MySQL 및 Maria에서 상호 호환되는 가비지 문자열 함수를 생성하는 동안 오류가 발생했습니다.DB (0) | 2022.11.15 |
http를 통한 파일에 대한 직접 액세스를 차단하지만 php 스크립트 액세스를 허용합니다. (0) | 2022.11.15 |
java.io의 자바에서의 mkdir()와 mkdirs()의 차이.파일 (0) | 2022.11.15 |
Python 클래스가 개체를 상속하는 이유는 무엇입니까? (0) | 2022.11.15 |