0
votes
0answers
67 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
91 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
2answers
310 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
84 views

How to install amqp on windows

I am having this error while installing pecl/amqp when I type in the command line: pear install pecl/amqp WARNING: php_bin C:\xampp\php\.\php.exe appears to have a suffix \.\php.exe, but config ...
0
votes
1answer
57 views

execute system commands which need input using PHP

Is there a way in PHP to make exec() or one of its variants run a system command that needs user input in the execution session. Can be an FTP transfer for example or even just a print statement ...
0
votes
0answers
158 views

PEAR and open_basedir restrictions

I have installed PEAR to /usr/share/pear and add '.:/usr/share/pear' to include_path in /etc/php.ini. But I am getting an 'open_basedir restriction' error when trying to access it. Done some ...
3
votes
2answers
5k views

Mountain Lion php pear and pecl

I've upgraded to Mountain Lion and installed php5.4 which took a bit of tweaking Mountain Lion change php location My next issue is if I run pear -v or pecl -v these return Could not open input ...
0
votes
1answer
264 views

pecl install trader failes with missing file - OSX Lion

I am trying to install the trader pecl extension and I keep getting an error during the make. If anyone could try this and let me know if they get a similar error or if anyone knows a solution. pecl ...
0
votes
1answer
95 views

Need help installing pear, pecl and pecl->ps

The end goal is to be able to read/write/exec postscript files using PECL -> PS which I believe to be included within PEAR. I have done all the basics # yum update, # yum install php-pear. However, I ...
-1
votes
2answers
402 views

Install with pecl to local dir on shared hosting

I'd like to install a PHP extension on a bluehost shared site; specifically the MongoDB driver. Since pecl is unable to write to the primary server directory that has all the installed extensions, I'd ...
0
votes
2answers
232 views

PHP Http Requests & Pecl/Pear on Hosting Servers

I am new to PHP and web development. I am trying to build a basic Facebook application. Hence it is necessary to use Http Requests to get user data from Graph API within Facebook. I checked how to ...
0
votes
0answers
725 views

pecl oauth package installed but not reflected in phpinfo

I have installed the php oauth 1.2.2 consumer extension aside PHP 5.3.3 on Ubuntu: ~$ pecl list Installed packages, channel pecl.php.net: ========================================= Package Version ...
0
votes
1answer
1k views

How to install pear, pecl extension to the php in remote linux server

I have searched through the Internet for the answer, and still don't get it. The problem is that I can't access the remote server's OS. I can just file-transfer scripts or any files to there and run ...
0
votes
1answer
521 views

Installing test-helpers extension for PHP on Windows fails

Trying to install phpunit test-helpers ( https://github.com/sebastianbergmann/php-test-helpers ) C:\>pecl install phpunit/test_helpers downloading test_helpers-1.1.0.tgz ... Starting to download ...
2
votes
1answer
292 views

How can I install PEAR::Mail for TYPO3 without pear or phar?

In order to use the TYPO3 extension 'Direct Mail' with an external SMTP server, I need to install PEAR::Mail (http://pear.php.net/package/Mail/download/1.2.0). At least, that is what the text in the ...
0
votes
2answers
191 views

OSX xdebug and relation to PEAR

I have the Acquia Drupal stack 7.4.4 - which is using PHP 5.2.17 installed on an OSX 10.6.8 Drupal's PHP Stack: User [~/]> php -v PHP 5.2.17 (cli) (built: Jun 30 2011 12:12:11) Copyright (c) ...
1
vote
2answers
2k views

PECL install failed

after upgrading from PHP5.2.6 to php 5.3. it seams, I also have to reinstall the PHP memcache-module. So I downloaded the newest version of memcache (3.0.6) and followed this documentation: ...
0
votes
1answer
320 views

Will using PECL to install an extension warn me of any changes it will make?

I'm using some PHP 5.1 code that won't work with a newer version of PHP, but I would like to use the memcache extension with it. I'm not sure if PECL will install additional packages, upgrade ...
32
votes
6answers
9k views

sudo pecl install apc returns error

I run the command: sudo pecl install apc The file gets downloaded, the configuration succeeds, then make is launched and I get the following error. /usr/include/php5/ext/pcre/php_pcre.h:29: fatal ...
1
vote
1answer
1k views

Install json extension for php with pecl

I try to install json extension for php. Using pecl I get the following error: # pecl install json downloading json-1.2.1.tgz ... Starting to download json-1.2.1.tgz (-1 bytes) ....done: 3,585 bytes ...
2
votes
2answers
3k views

How do you change the default Pear/PECL build folder from /var/tmp?

I'm trying to install a PECL package on Linux, but the installer never gets past the configure stage. My hosting provider mounted a file system at /var/tmp that prevents files from executing, and ...
1
vote
1answer
2k views

Using PECL to install extensions on Windows 7

I've been trying to install some PECL extensions on my laptop, but I've ran into a few problems. Whenever I run pecl install whatever from the command line I get a message saying ".\php.exe appears to ...
32
votes
3answers
4k views

What are differences between PECL and PEAR?

I can see that GD library is for images. But I can't see differences between PECL and PEAR. Both have authentication. What are the main differences between two? Why don't they combine them?
7
votes
5answers
4k views

PECL install fails

I have browsed every Google result, read all the forum posts about this error, but I cannot solve it. When using PECL install for anything, I always end up getting this error: checking whether the C ...
2
votes
4answers
668 views

Adding functions to PHP core

I have several functions that I wrote and I use regularly on my servers, is there a way I can add them to the core so I don't have to include them from external files? I am running PHP5
-1
votes
9answers
2k views

PHP: Use Pecl/Pear, or build my own systems?

When building some of my PHP apps, a lot of the functionality could be coded using PEAR/PECL modules, however, the fact that some people using it may not have the access to install things, It poses a ...