3

Windows 7 に PEAR をインストールしようとしています。

ディレクトリにphp 5.4 がd:\web\soft\phpあり、このディレクトリにも PEAR をインストールしたいと考えています。走る:

php go-pear.phar

私はこれを見る: ここに画像の説明を入力

このパスは私にとっては問題ありません。

次に、Enter を実行してインストールします。最後に、次の警告が表示されます。

警告!古いバージョンが D:\web\soft\php にあります。削除するか、必ず新しい d:\web\soft\php\pear.bat コマンドを使用
してください 'pear' コマンドは d:\ で利用できますweb\soft\php\pear.bat`

押すpear config-showと、ディスクに関連する完全に間違ったパスが表示されますC:\

Auto-discover new Channels     auto_discover    <not set>
Default Channel                default_channel  pear.php.net
HTTP Proxy Server Address      http_proxy       <not set>
PEAR server [DEPRECATED]       master_server    pear.php.net
Default Channel Mirror         preferred_mirror pear.php.net
Remote Configuration File      remote_config    <not set>
PEAR executables directory     bin_dir          D:\web\soft\php
PEAR documentation directory   doc_dir          C:\php\pear\docs
PHP extension directory        ext_dir          d:/web/soft/php/ext
PEAR directory                 php_dir          D:\web\soft\php\pear
PEAR Installer cache directory cache_dir        C:\Users\zzz\AppData\Local\Temp\pear\cache
PEAR configuration file        cfg_dir          C:\php\pear\cfg
PEAR data directory            data_dir         C:\php\pear\data
PEAR Installer download        download_dir     C:\Users\zzz\AppData\Local\Temp\pear\download
PHP CLI/CGI binary             php_bin          D:\web\soft\php\php.exe
php.ini location               php_ini          <not set>
PEAR Installer temp directory  temp_dir         C:\Users\zzz\AppData\Local\Temp\pear\temp
PEAR test directory            test_dir         C:\php\pear\tests
PEAR www files directory       www_dir          C:\php\pear\www
Signature Handling Program     sig_bin          c:\gnupg\gpg.exe
Signature Key Directory        sig_keydir       C:\Windows\pearkeys
User Configuration File        Filename         C:\Windows\pear.ini
System Configuration File      Filename         C:\Windows\pearsys.ini

だからうまくいかない。

私は何を間違っていますか?

4

3 に答える 3

1

PHP_PEAR_SYSCONF_DIRがあるディレクトリに設定しますpear.ini

SETX PHP_PEAR_SYSCONF_DIR d:\web\soft\php /M
于 2015-05-20T18:35:56.060 に答える
-2

これは、php http://crc-stc.com/How_to_Install_PHP_PEAR_on_WampServerに pear をインストールするためにこれまでに出会った最高のリンクです

于 2013-11-12T10:53:47.167 に答える
-2

あなたのパラメータinclude_pathを調べてみてくださいphp.ini

include_path = ".;d:\web\soft\php;d:\web\soft\php\PEAR"
于 2012-11-06T15:14:12.903 に答える