pecl

How to add Solr PECL extension into lampp (xampp) stack

Is it possible to add PECL extensions into a lampp stack? If so, how can it be done? I am specifically interested in http://www.php.net/manual/en/book.solr.php extension. EDIT: when installing this extension using: /opt/lampp/bin/pecl install -f solr everything seams to go as it should except at the end: checking for cURL support...

pecl not working on php CLI mode (involving mongoDB in Gearman)

For test purposes I have gearman running on localhost. So I run the gearman worker.php file from php command line. When I test this in normal apache mode, mongoDB works just fine, but when it runs from the gearman worker file I get the error "fatal error: class 'Mongo' not found". Now the Mongo class comes from pecl and the mongo.so exte...

How to update timezonedb in PHP (updating timezones info)?

Hi, phpinfo() shows our system to be using ""Olson" Timezone Database Version 2010.3". I think that is now out of date, but can't locate an authoritative location which can confirm that. (a) Can I update the timezones info for PHP as a whole? (b) If so, how do I update this? I saw the instructions at http://www.electrictoolbox.com/co...

Compiling a php extension with Visual Studio 2008, MODULE ID don't match with php

After compiling my own php extension using VC9 (2008) and VC10 (2010) using the next steps: http://blog.slickedit.com/2007/09/creating-a-php-5-extension-with-visual-c-2005/ I get the next error when initializing php: PHP Warning: PHP Startup: FirstPHPExt Module: Unable to initialize module Module compiled with build ID=API20090626,TS...

Unable to install AMQP for PHP - Symbol not found error

I'm getting the following error when running the code listed below. I have install AMQP extension through PECL and it shows up fine in my php.ini file when I do phpinfo both from the command line and browser. <?php // amqp rabbitmq client test // Create a connection $cnn = new AMQPConnection(); exit(); ?> When tr...

Need PECL OAUTH-1.0.0 windows dll

Anyone know where a windows dll for PECL OAUTH-1.0.0? (0.99.9 is here http://downloads.php.net/pierre/) ...

Can't seem to connect with PuTTY

generated the required .ppk file and loaded it in Connection=>SSH=>Auth=>Private key file for authentication. The connection ERROR message: Network Error: Connection refused. Am i doing something wrong ? ...

What does BBCODE_TYPE_ROOT mean?

When using PHP's BBCode extension, does anyone know what BBCODE_TYPE_ROOT means exactly? It doesn't seem necessary, at least with this example, however, it is used in most of the examples in the documentation. The documentation is pretty vague about this element: BBCODE_TYPE_ROOT (integer) This BBCode tag is the special tag root (n...

where can I find PECL for windows ?

where can I find PECL for windows ? ...

PHP PECL extension intl giving garbled results for Swedish ordinal numbers

I'm using the PECL intl module to localize dates and numbers in a PHP project. In all other languages I'm using (40), localizing ordinal numbers works fine. In Swedish, however, I get strange output. It appears to be the template constants used to generate the ordinals. $fnf = new NumberFormatter('sv_FI', NumberFormatter::ORDINAL); echo...