I have two instances of PHP in my Ubuntu. One is xampp (/opt/lampp/bin) and the other is in /etc/php5. I want to install pecl extension for xampp php but every command i make it works only for /etc/php5

here's what I type:

  1. cd imagick-3.1.0b1/
  2. /opt/lampp/bin/phpize
  3. ./configure
  4. make
  5. make install

what am I doing wrong?

link|improve this question
feedback

1 Answer

up vote 0 down vote accepted

Use the --with-php-config option to the configure script to point it to the correct php-config5 binary, like so:

./configure --with-php-config=/usr/local/php5/bin/php-config5
link|improve this answer
it works, thanks – czarek zmuda May 23 '11 at 20:06
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.