PECL is a repository for PHP Extensions, providing a directory of all known extensions and hosting facilities for downloading and development of PHP extensions.

learn more… | top users | synonyms

0
votes
1answer
13 views

Working with PECL extensions

I installed a PECL extension (solr.so) on Ubuntu. After correctly installing it by running make install, it displayed: Installing shared extensions: /usr/lib/php5/20100525+lfs/ Next, I added ...
0
votes
4answers
15 views

How to check if PECL extension is present?

How do I from PHP code if a PECL extension is installed or not? I want gracefully handle the case when an extension is not installed.
0
votes
2answers
44 views

Getting started with solr

I've struggling a lot trying to get solr working. I've read the official docs and tutorials, tried them out but still couldn't figure out how to get started. I took to randomly test out blogs which ...
0
votes
0answers
9 views

Downloading and installing “msgpack” PECL package on windows

I tried install the msgpack pecl extension on my windows machine by using the command pecl install msgpack-0.5.5, but it failed with the following message: ERROR: The DSP msgpack.dsp does not exist. ...
1
vote
0answers
17 views

Can't install xdebug using pecl

This is what I have done: first of all I installed php5-dev. php.h is in /usr/include/php5/main. After that: cd /opt/lampp/bin ./pecl install xdebug Result: /tmp/pear/temp/xdebug/xdebug.c:25:17: ...
-1
votes
0answers
17 views

RFC Compliant UUID v4 implementation to use with PHP [closed]

Edit: PECL UUID extension -> Based on libuuid, same one used in e2fsprogs http://pecl.php.net/package/uuid OSSP UUID PHP extension -> Looks independent implementation ...
0
votes
0answers
19 views

PDF Lib install fail on linux server. Using pecl install pdflib

I'm attempting to install pdflib on my server and receiving the error: configure: error: pdflib.h not found! Check the path passed to --with-pdflib=<PATH>. PATH should be the install prefix ...
1
vote
1answer
25 views

How do I install PECL APD on wamp server?

How do I install PECL APD on wamp server so that I can profile my PHP scripts?
0
votes
0answers
32 views

phpize for xampp on windows 7

I have surfed a lot but couldn't find out how to install and use phpize for xampp on windows 7! Can anyone help me where to find and what to download and especially how to install phpize for xampp? ...
0
votes
2answers
32 views

Installing Alternative PHP Cache using PECL and Fink

I would like install the Alternative PHP Cache (APC) on my mac. With PECL this is supposedly a rather painless operation. All one needs to do is: sudo pecl install apc As others have reported on ...
-1
votes
0answers
31 views

pecl_http : Apache is unable to load http.so [closed]

I'm using MAMP 2.1.3 with Mac OS 10.8.3. I've just installed the pecl_http extension with Mac Ports + PECL. The http.so exists and is in (correctly set in php.ini) : ...
2
votes
2answers
204 views

ZipArchive Library Is Not Enabled When Using PHPExcel

I am using CodeIgniter and PHPExcel to read and write to excel files. Everything worked fine in localhost, but when I uploaded my PHP CodeIgniter application to the server in pagodabox I got the ...
0
votes
0answers
61 views

Install PECL extension (Solr) using Chef

I am trying to have the SOLR PECL extension install using Chef(-Solo) (via Vagrant). As I'm trying to install it on a Zend Server CE box, I can't use or access the normal php cookbook (AFAIK), so I ...
0
votes
1answer
61 views

Problems with PHP YAML within Travis CI

Edit: I believe the problem is that YAML doesn't work on 5.4/5.5. I have a library that is setup in Travis CI and that uses the PHP YAML PECL extension. However, I am unable to get the YAML extension ...
0
votes
0answers
73 views

PHP5.4 GnuPG Installation issue [closed]

I have tried to install GnuPG extension on Ubuntu machine with PHP Version 5.3.6 Using the following pecl command it worked fine. sudo pecl install gnugp But My live server has php 5.4 when i try ...
0
votes
0answers
49 views

Why does my GeoIP.so extension not recognized by MAMP? [closed]

I've been trying to install geoip along with pecl on MAMP. At this point, I've been looking at all the tuts and help I can find on the net without any luck. I've installed Pecl properly following ...
0
votes
1answer
41 views

How to tell MAMP which version of PHP to use?

I've installed PECL for PHP on MAMP. Unfortunately, it is using php 5.3.6 which is different form the most recent version of PHP(which is 5.4.10 today). When looking a phpinfo, I see that it is not ...
0
votes
1answer
63 views

How to generate .php files from .dll files for code completion?

Basically I have just successfully installed MongoDB and it's PHP extension. I want to use code completion in my IDE for the MongoDB php library and closest I have gotten to getting an answer is some ...
0
votes
0answers
88 views

pecl install apc isn't working. shtool does not exist

I am an absolute newbie…didn't learn about SSh till an hour ago and got my first VPS 2 hours ago. Still learning! So I'm installing MediaWiki and need to add APC extension. But having a lil trouble. ...
-1
votes
1answer
53 views

Connection pooling for RABBITMQ in PHP

I want to use RabbitMQ in my project.It's mainly written in PHP hosted by Apache2 server.To deal with RabbitMQ,I choose PECL extension.And I've read in somewhere something like: "the connection is ...
3
votes
0answers
86 views

PHP Lua Extension [closed]

I am looking into using Lua with PHP, but I can't figure out how to set it up to be a PHP extension (DLL). I can't find ANY documentation on this, so does anyone have any experience with this/PECL? ...
0
votes
0answers
109 views

cant install bcompiler pecl extension

I have googled this until I am blue in the face - no matter what I try I can't seem to get bcompiler to install. I am running xampp 1.8.1 on windows # pecl install bcompiler downloading ...
0
votes
0answers
286 views

Error upload progress bar & codeigniter

I'm implementing upload bar with PECL uploadprogress, codeigniter method (for server side php script) and jQuery (for call to server and calculate percentage and so on) but I have a bit problem when ...
0
votes
0answers
85 views

Installing latest version of ImageMagick using yum

I'm having a heck of a time installing ImageMagick, ImageMagick-devel and the PECL imagick libraries on a CentOS5 VPS. It seems the repo that comes preinstalled with yum is installing 6.2, I'm looking ...
0
votes
0answers
47 views

Php uploadprogress installation

I am using "pecl install uploadprogress" command for intalling php uploadprogress in my localhost(windows-xampp). But in CMD it is giving an error that "ERROR: failed to mkdir ...
1
vote
0answers
80 views

Configuring PHP on Tomcat gives exception: UnsatisfiedLinkError

I have been trying to use PHP on Tomcat (don't ask why, I just have to), and have been following the Configure PHP with Tomcat and several tutorials given for PHP with PECL & Tomcat. I've done ...
0
votes
1answer
88 views

PHPUnit error for trying to install

Does anyone know why when I try to install PHPUnit onto my mac osx 10.8.2 I get this error? Unknown remote channel: pear.symfony.com Did not download optional dependencies: phpunit/PHP_Invoker, use ...
0
votes
1answer
119 views

Is there a x64 OAuth DLL for PHP 5.4?

I'm looking for a the PECL OAuth DLL for 64 bit Windows and PHP 5.4. Does anyone know where I can find the DLL (assuming it exists somewhere out there)? There are similar questions on Stack ...
0
votes
1answer
116 views

php cannot load pecl http extension

I have installed pecl_http on a PLESK server (which seems to be successful) but for some reason, the http extension will not load into PHP. var_dump(extension_loaded("http")); gives me bool(false). ...
0
votes
1answer
48 views

rabbitmq with wamp server

Ok so I have seen other questions regarding this but I still havent come right. I need to connect to rabbitmq from php but I am using wamp on my windows machine. I have seen that I need to download ...
0
votes
1answer
51 views

source code for PHP's xdiff_string_diff

So my production environment does not have pecl xdiff library installed (and it will remain so) so I need the source code of xdiff_string_diff() (or some other function that does the same) Does ...
0
votes
1answer
97 views

pecl - gearman - Unable to load dynamic library?

I'm setting up the default instance for a new Amazon Elastic Beanstalk cluster however I'm having issues installing the gearman php client via pecl. I ran pecl install mongo without any issues, but ...
0
votes
0answers
95 views

how do i install APC for a certain version of PHP on my mac?

I installed APC on the default version of PHP that my mac came with. I have since downloaded 5.4 and it is in a different directory. How i do i install APC for a certain PHP version on my mac? When i ...
1
vote
1answer
43 views

Need help onSolrUtils::escapeQueryChars() usage

I want some real life scenario in programming where we can use this solr util method i.e. SolrUtils::escapeQueryChars(). Now I am using it for escaping query chars from query in solr. ...
0
votes
1answer
81 views

How to install pecl-event on FreeBSD?

I've try to install pecl-event on FreeBSD 8.0, but get error: # pecl install event Failed to download pecl/event within preferred state "stable", latest release is version 0.9.1, stability "beta", ...
0
votes
1answer
51 views

PECL solr package issue

In solr PECL php package,to the solrQuery class we can add parameters using solrparam::set methods as name value pair.So Inorder to build a query we can use this SolrParams class. I am just trying to ...
0
votes
0answers
311 views

installing pecl - fatal error: 'php.h' file not found

I'm trying to install PECL OAuth but I get an error message (I use macbook mountain lion). In file included from /private/tmp/pear/temp/oauth/oauth.c:14: ...
-2
votes
1answer
55 views

LuaPHP Segmentation fault on new Lua()

So i installed lua extension for PHP from http://pecl.php.net/package/lua I'm sure this extension is actually loaded thanks to get_loaded_extensions(). But i'm having trouble using it. Actually, ...
0
votes
0answers
39 views

PECL Operator overloading on wamp

How can I enable pecl operator overloading extension on my WampServer ?
0
votes
0answers
38 views

Unable to do search for dynamically created fields using solr PECL for PHP

I am not getting the documents in search result which are dynamically created( fields). These documents are there in and I am getting in the solr admin. But with PHP PECL for solr,I am not getting ...
0
votes
2answers
127 views

MongoDB upgrade and inconsistent integer storage with PHP

Since upgrading to MongoDB 2.2 and the version 1.3 PECL package for Mongo (not sure which change is relevant), I've noticed that inserts through PHP for fields cast to ints are now inserted as ...
0
votes
0answers
78 views

PHp PECL Imagick -> Validate image

I want to validate file with Imagick to check is it an image. I tried to create object with file test.mbw (MySQL Workbench) and OK it throws me an exception (It is not valid image bla bla bla), but I ...
0
votes
0answers
118 views

Problems with pecl on ubuntu server

I can`t install nothing with pecl in my Ubuntu 12 server. Here the error: $ sudo pecl install mongo downloading mongo-1.3.2.tgz ... Starting to download mongo-1.3.2.tgz (120,931 bytes) ...
3
votes
1answer
132 views

PHP OAuth with the LinkedIn API

I'm running into problems making requests to the LinkedIn share API using PHP's PECL OAuth module. I've Googled for all I'm worth, but I can't find any examples. My PHP Code: $linkedin_oauth = new ...
3
votes
1answer
240 views

Memcached (not memcache) PHP extension on Windows

I can't seem to find the Memcache*D* extension for PHP. There are a few compilations of php_memcache.dll, but that's not the same. The main thing I'm missing is getMulti(), which doesn't exist in ...
0
votes
1answer
159 views

Any simple way to setup php pecl-svn on MAC OS 10.6 using XAMPP?

I am trying to use svn from php and tried this so far without any success :( (trying to install pecl svn extension) sudo /Applications/XAMPP/xamppfiles/bin/pecl install svn I choose autodetect for ...
0
votes
2answers
298 views

install php extension geoip on windows

When I'm trying to install geoip ext via PECL I got this: C:\Users\admin>pecl install geoip No releases available for package "pear.php.net/geoip" install failed How to do it right?
0
votes
0answers
152 views

nelmio/solarium vs pecl solr package or other

what do you recommend I use as a Solr client in PHP? the PECL package? solrbundle? Solarium? other? Which is better in terms of performance, use ... ? I can not find any information/comparison ...
1
vote
2answers
93 views

Creating php DLL from pecl source files

How can i build a DLL file from a PECL source file. I need to build DLL for APC extension from PECL source (http://pecl.php.net/package/APC)
0
votes
2answers
421 views

Unable to install APC and XDebug in Vagrant VM

I followed several tutorials and guides concerning Vagrant and Chef Solo, but I am running into problems when I want to provision my Precise64 VM using Chef Solo. After installing PHP5.3 and PECL and ...

1 2 3 4 5 6