私はソースコードからPHPをインストールしようとしていますが、ここで問題が発生しました。グーグルで検索しましたが、役に立つものはありませんでした。まず、これが私のinstall.shです。
make clean
./configure \
--prefix=/usr/local/programs/php5 \
--disable-fileinfo \
--with-config-file-path=/usr/local/programs/php5/etc/php.ini \
--with-config-file-scan-dir=/usr/local/programs/php5/etc/ \
--with-apxs2=/usr/local/programs/apache2.4/bin/apxs
if [ 0 != $? ]; then
echo "Auto installation failed! -- Configuration"
exit
fi
make
if [ 0 != $? ]; then
echo "Auto installation failed! -- Make"
exit
fi
sudo make install
if [ 0 != $? ]; then
echo "Auto installation failed! -- Configuration"
exit
fi
echo "Copying the min size config file."
sudo cp php.ini.clean.bk /usr/local/programs/php5/etc/php.ini
if [ -a /usr/bin/php ]; then
sudo rm /usr/bin/php
sudo ln -s /usr/local/programs/php5/bin/php /usr/bin/php
fi
php --version
php --ini
スクリプトが完了した後、ここで奇妙な情報が得られました:
Configuration File (php.ini) Path: /usr/local/programs/php5/etc/php.ini
Loaded Configuration File: (none)
Scan for additional .ini files in: /usr/local/programs/php5/etc/
Additional .ini files parsed: /usr/local/programs/php5/etc/php.ini
なぜLoaded Configuration File: (none)
null なのでしょうか。インストール中に何か問題が発生したのでしょうか?
また、
$ ls /usr/local/programs/php5/etc/
pear.conf php.ini php.ini.bk
答え1
--with-config-file-path=/usr/local/programs/php5/etc/php.ini
は正しくありません。パスではないファイル。
--with-config-file-path=/usr/local/programs/php5/etc/