2016-09-21 2 views
0

우분투 apache2 서버에 Mediawik을 설치하려고합니다.MediaWiki를 설치할 때 어떤 파일 확장자를 사용해야합니까?

sudo apt-get install php-pear 
You will be prompted to confirm the install. Just press “y” and enter. If all goes well you should see it download and install the php-pear package. 

Now you will need to install the php5-dev package to get the necessary PHP5 source files to compile additional modules. Enter the following from a shell prompt: 

sudo apt-get install php5-dev 
If you do not install the php5-dev package and try to install a PECL extension using “pear install”, you will get the following error: 

sh: phpize: not found 
ERROR: `phpize’ failed 
The PECL_HTTP extension requires an additional dependency package to be installed. You can probably skip this for other extensions: 

sudo apt-get install libcurl3-openssl-dev 
Now we are finally ready to actually install the extension. From a shell prompt enter following but substitute “pecl_http” with the PECL extension name you are installing: 

sudo pecl install pecl_http 

가 지금은 "pecl_http"옆에 가야한다 어떤 파일 확장자 이름을 알아낼 수 없습니다 : 미디어 위키 설치 페이지가

Warning: The intl PECL extension is not available to handle Unicode normalization, falling back to slow pure-PHP implementation. 

을 보여줍니다으로 나는 일부는 다음과 같이 기사를 검색 따랐다 .

답변

0

시도 sudo apt-get install php5-intl.

관련 문제