php 5.3.1 설치 컴파일 후 php.ini 파일을 찾을 수 없습니다


11

내 컴파일 구성 :

./configure \
--with-fpm \
--with-libevent=shared,/usr/lib \
--with-mcrypt \
--with-zlib \
--with-curl  \
--enable-mbstring \
--with-openssl \
--with-mysql \
--with-mysql-sock \
--with-gd \
--with-jpeg-dir=/usr/lib \
--enable-gd-native-ttf \
--without-sqlite

phpinfo 페이지 출력은 다음과 같습니다

Configuration File (php.ini) Path: /usr/local/lib
Loaded Configuration File:         none

/ usr / local / lib에는 php.ini가 없습니다.

내 환경 : Ubuntu 9.10 64 비트, nginx 0.8.32

답변:


12

php-5.3.1.tar.gz의 설치 파일에서 :

13. Setup your php.ini file:

PHP will use the built-in default values if no php.ini file was
placed in the configuration directory. The default location is
/usr/local/lib, if you prefer your php.ini in another location, use 
--with-config-file-path=/some/path in step 10.

The PHP distribution provides two sample php.ini files, you can use them
by
  cp php.ini-development /usr/local/lib/php.ini
or
  cp php.ini-production  /usr/local/lib/php.ini

If you choose one of these php.ini files be certain to read the list
of changes within, as they affect how PHP behaves.

php.ini 파일을 만들어야합니다. 샘플 파일 중 하나를 복사하여 수행 할 수 있습니다.

당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.