インストール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のINSTALLファイルから:

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ファイルを作成する必要があります。これは、サンプルファイルの1つをコピーすることで実行できます。

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.