Questions tagged «pecl»

7
PECL命令产生一长串错误
当前在CentOS 6.5上运行PHP 5.4。 我安装了webtatic php55w软件包,然后通过PECL毫无问题地安装了PEAR + PECL以及redis和mongo。 不久之后,我意识到5.5与我使用的框架不兼容,所以我删除了php55w并在其位置安装了php54w。 现在pecl命令根本不起作用。每当我发出任何pecl命令(缩写...最多重复数十次)时,它只会产生非常长的错误字符串: Warning: Invalid argument supplied for foreach() in Command.php on line 259 Warning: Invalid argument supplied for foreach() in /usr/share/pear/PEAR/Command.php on line 259 ...etc etc etc... Notice: Undefined index: honorsbaseinstall in Role.php on line 180 Notice: Undefined index: honorsbaseinstall in Role.php on …
47 php  centos6  php-fpm  pecl  pear 

1
如何安装旧版本的pecl软件包
我有这个代码 $passengerId = new \MongoId(oPassenger->getId()); return $this->createQueryBuilder('Device') ->update() ->multiple(true) ->field('activated')->set(false) ->field('passenger')->unsetField()->equals($passengerId) ->field('_id')->notEqual($deviceId) ->getQuery() ->execute(); 在我的开发服务器上工作正常,但在本地计算机上崩溃。 pecl list在开发者回报上运行 APC 3.1.13 beta amqp 1.2.0 stable intl 3.0.0 stable mongo 1.3.7 stable 以及本地回报: mongo 1.5.6 stable xdebug 2.2.5 stable 我机器上的崩溃消息是 "name":"MongoException","message":"Invalid object ID"},"code":500} 我曾尝试将本地版本的mongo降级,但由于pecl的文档欠佳,我无法弄清楚。例如我尝试了这个: sudo pecl upgrade -f -c channel://pecl.php.net/mongo-1.3.7 但是我会继续获取channel does not …
29 php  mac-osx  mongodb  pecl  pear 

2
在Ubuntu上安装imagick PHP扩展
我正在尝试在Ubuntu服务器上安装imagick pecl扩展名,并遇到以下错误。我已经使用aptitude安装了ImageMagick rpm,并且pecl扩展名为2.3.0版。我在网上四处张望,但找不到任何指向正确方向的东西。我还尝试寻找看起来好像是Wand-config或MagickWand-config程序的任何东西,该程序提到了错误但找不到任何错误。 steven@server:/var/www$ sudo pecl install imagick downloading imagick-2.3.0.tgz ... Starting to download imagick-2.3.0.tgz (86,976 bytes) .....................done: 86,976 bytes 12 source files, building running: phpize Configuring for: PHP Api Version: 20041225 Zend Module Api No: 20060613 Zend Extension Api No: 220060519 Please provide the prefix of Imagemagick installation [autodetect] …

1
如何在Linux系统上安装PECL
http://pecl.php.net/中有PECL扩展的下载部分, 但我没有得到PECL *本身**的安装步骤。以下命令不起作用- yum intall pecl 在我的系统中,我已经安装了PECL,因此可以安装像这样的PECL扩展名- pecl install mailparse 但是,在运行pecl命令无法识别的系统中,如何首先在Fedora 7系统(旧系统)上安装PECL。
20 php  pecl 

2
pecl install mongo-不断使用错误的模块API进行编译
在此处使用Nginx和php5-fpm与Ubuntu 12.04 我的mongo在php 5.3上运行良好,然后我添加了ondrej / php5 ppa并更新为php5.4。它保留了GD和CURL扩展名,但没有mongo。我将该行重新添加到php.ini文件,什么也没有。然后我启用了启动错误并得到了这个: PHP Startup: Unable to load dynamic library '/usr/lib/php5/20100525/mongo.so' - /usr/lib/php5/20100525/mongo.so: cannot open shared object file: No such file or directory 因此,很find -name 'mongo.so'容易猜到,我确实将文件从20090626 /移至20100525 / ...导致了此错误: PHP Startup: mongo: Unable to initialize module Module compiled with module API=20090626 PHP compiled with module API=20100525 …
9 php5  mongodb  pecl  php-fpm 

8
在CentOs 5上安装/启用PHP Pecl Intl扩展
原始问题: 我在CentOs 5机器上安装PHP Pecl Intl扩展时遇到问题。 安装完这两个命令后,icu并libicu使用以下命令: $ yum install icu $ yum install libicu 我试图像这样安装Intl扩展: $ /usr/bin/pecl install intl 我选择搜索ICU库和头文件的默认位置。它最终像这样崩溃: checking whether to enable internationalization support... yes, shared checking for icu-config... no checking for location of ICU headers and libraries... not found configure: error: Unable to detect ICU prefix or …
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.