Sau khi biên dịch cài đặt php 5.3.1, tôi không thể tìm thấy tệp php.ini của mình


11

cấu hình biên dịch của tôi:

./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

Đầu ra trang phpinfo có vẻ như dưới đây

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

Và không có php.ini trong / usr / local / lib.

Môi trường của tôi: Ubuntu 9.10 64bit, nginx 0.8.32

Câu trả lời:


12

Từ tệp INSTALL trong 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.

Bạn cần tạo tệp php.ini. Điều này có thể được thực hiện bằng cách sao chép một trong các tệp mẫu.

Khi sử dụng trang web của chúng tôi, bạn xác nhận rằng bạn đã đọc và hiểu Chính sách cookieChính sách bảo mật của chúng tôi.
Licensed under cc by-sa 3.0 with attribution required.