PECL is a repository for PHP Extensions, providing a directory of all known extensions and hosting facilities for downloading and development of PHP extensions.
Questions tagged [pecl]
828 questions
0
votes
1 answer
Will a PECL package for PHP 5.4 work with 5.5?
I'm looking to install the Amazon ElastiCache Memcached Cluster Client so I can take advantage of autodiscovery of cache nodes.
Unfortunately, it looks like they only available options are
Java
PHP 5.3 (64-bit Linux)
PHP 5.3 (32-bit Linux)
PHP 5.4…

Brad Dwyer
- 6,305
- 8
- 48
- 68
0
votes
0 answers
PECL - Error not found installing extension
I want to install cld exention with pecl. There is a strange error and I don't know how to solve it. Following the log: http://pastebin.com/YunLWetm, how to solve it? My SO is Ubuntu 13.10.

user3154581
- 61
- 1
- 5
0
votes
1 answer
osx 10.9 php 5.4 pecl_http - class HttpRequest not found
I am running php 5.4.17 on OS X 10.9.1.
I have installed pear using this command:
wget http://pear.php.net/go-pear.phar
php -d detect_unicode=0 go-pear.phar
Then I have installed pecl_http with:
pecl install pecl_http
I have added extension lines…

jnnv
- 68
- 8
0
votes
0 answers
Call to undefined function EvPeriodic()
I have tried the sample watcher example of php manual. but it is not working. i got an error : Call to undefined function EvPeriodic(). My Configuration information and code given below:
WAMP server : 2.2
PHP : 5.4.3
Apache : 2.2.22

Innovative Thinker
- 1,735
- 2
- 14
- 24
0
votes
1 answer
pecl http.so not working on maverick with PHP Version 5.4.17
I installed pecl extensions on my mac/maverick running PHP Version 5.4.17.
phpinfo says http has been loaded and so for raphf and propro.
I'm able to run sample using propro, but I'm not able to use the sample code for HttpRequest…

Crixo
- 3,060
- 1
- 24
- 32
0
votes
1 answer
HttpReqeust not found but I real installed pecl_http
I'm use php-fpm on centos, php version is 5.5.6
When I install pecl_http and restart fpm, I get the phpinfo abot pecl_http module:
http
HTTP Support enabled Extension Version 2.0.1
Used Library Compiled Linked libz 1.2.7 1.2.7 libcurl …

joaner
- 706
- 1
- 5
- 17
0
votes
0 answers
Installing php extensions onto server without compiler
I have a couple extensions I need to install on RHEL6.
I've used pecl on my dev and test boxes and it works fine.
However, now I need to install them on my production server, and we don't install any compilers in production.
What's the best way to…

AaplMike
- 343
- 1
- 4
- 15
0
votes
2 answers
Empty attributes with distributed indexes
When i search in distributed index i have empty attributes
[matches] => Array
(
[9] => Array
(
[weight] => 1
[attrs] => Array
(
)
)
…

Miron Yanovskiy
- 640
- 7
- 12
0
votes
2 answers
PHP extension install - phpize error - on NGINX/PHP-FPM
I want to install imagick extension for PHP. But i get error 'phpize' error when installing
> pecl install imagick-3.1.2
downloading imagick-3.1.2.tgz ...
Starting to download imagick-3.1.2.tgz (94,657 bytes)
.....................done: 94,657…

Anoop Naik
- 335
- 7
- 15
0
votes
0 answers
Install PECL extension and enable PHP ZTS on cloudControl
How do I install a PECL extension for PHP on the cloudControl platform?
Do i need to create a custom Buildpack?
EDIT: I tried to install the extension following this tutorial. My commands:
cctrlapp APP_NAME/DEP_NAME run bash
wget…

ausi
- 7,253
- 2
- 31
- 48
0
votes
0 answers
How do I install the Imagick extension on Windows?
I have used imagemagick concept, so I followed the instructions for Windows given in the below link,
http://php.net/manual/en/imagick.installation.php
I got
Fatal error: Class 'Imagick' not found.
I need solution for PDF to image or HTML to image…

Govindaraj
- 21
- 1
- 3
0
votes
1 answer
Can't find (nor make) OAuth php class on Dreamhost VPS
I am trying to configure my Dreamhost VPS (running Debian and PHP5.3) to enable a PHP app to use an OAuth service provided by Autodesk, but the apps keeps failing because it can't find the OAuth class.
I installed the liboauth-php package using…

mcgregor94086
- 1,467
- 3
- 11
- 22
0
votes
1 answer
In PHP's Gender\Gender class, what is the difference between IS_UNISEX_NAME and IS_A_COUPLE?
I was looking at the Gender class usage example, which contains this snippet:
case Gender::IS_UNISEX_NAME:
printf("The name %s is unisex in %s\n", $name, $data['country']);
break;
case Gender::IS_A_COUPLE:
printf("The name %s is both male…

Bryan Tsang
- 71
- 9
0
votes
2 answers
Persistent connection or connection pooling in PHP54+ Nginx + PHPFPM + MongoDB
I am using pecl mongo 1.4.x driver(http://pecl.php.net/package/mongo/1.4.1), with the setup mentioned in the title on a moderate traffic services (5K - 10K request per min).
And I've found that, in mongoDB the Auth command is taking a large chunck…

Leo Liang
- 55
- 1
- 6
0
votes
1 answer
pecl oAuth extension required
I am trying to use the Google AdWords API and have the entire directory uploaded. I have received the following error:
Fatal error: Uncaught exception 'ValidationException' with message
'Validation failed for [oauthHandlerClass] with value…

Matthieu McLaren
- 224
- 1
- 4
- 14