我正在尝试安装HTTPRequest扩展程序。但是,当我在我的CentOS服务器上运行以下命令时,我会收到这样的消息:没有可用的版本,安装也失败了。
$pecl install pecl_http
No releases available for package "pecl.php.net/pecl_http"
install failed我做错了什么?
编辑: Pecl配置
Configuration (channel pecl.php.net):
=====================================
Auto-discover new Channels auto_discover <not set>
Default Channel default_channel pecl.php.net
HTTP Proxy Server Address http_proxy <not set>
PEAR server [DEPRECATED] master_server pear.php.net
Default Channel Mirror preferred_mirror pecl.php.net
Remote Configuration File remote_config <not set>
PEAR executables directory bin_dir /usr/local/bin
PEAR documentation directory doc_dir /usr/local/lib/php/doc
PHP extension directory ext_dir ./
PEAR directory php_dir /usr/local/lib/php
PEAR Installer cache directory cache_dir /tmp/pear/cache
PEAR configuration file cfg_dir /usr/local/lib/php/cfg
directory
PEAR data directory data_dir /usr/local/lib/php/data
PEAR Installer download download_dir /tmp/pear/download
directory
PHP CLI/CGI binary php_bin /usr/local/bin/php
php.ini location php_ini <not set>
--program-prefix passed to php_prefix <not set>
PHP's ./configure
--program-suffix passed to php_suffix <not set>
PHP's ./configure
PEAR Installer temp directory temp_dir /tmp/pear/temp
PEAR test directory test_dir /usr/local/lib/php/test
PEAR www files directory www_dir /usr/local/lib/php/htdocs
Cache TimeToLive cache_ttl 3600
Preferred Package State preferred_state stable
Unix file mask umask 22
Debug Log Level verbose 1
PEAR password (for password <not set>
maintainers)
Signature Handling Program sig_bin /usr/bin/gpg
Signature Key Directory sig_keydir /usr/local/etc/pearkeys
Signature Key Id sig_keyid <not set>
Package Signature Type sig_type gpg
PEAR username (for username <not set>
maintainers)
User Configuration File Filename /home/onsboek/.pearrc
System Configuration File Filename /usr/local/etc/pear.conf发布于 2013-06-04 10:17:41
试一试以下几点;
yum install php-pear
yum install gcc
yum install curl-devel
/usr/bin/pecl install pecl_http将以下行添加到/etc/php.ini文件中: extension=http.so
重新启动apache服务器,以便加载扩展:
httpd -k restart如果它不起作用,让我知道输出。
https://stackoverflow.com/questions/8367748
复制相似问题