Guillaume_Desp

Registered
Jul 30, 2009
3
0
51
I can not install Pecl extension from c panel . I need it for a Drupal Site... Is there a simple way to catch it ?
 

david510

Well-Known Member
Aug 22, 2004
473
0
166
Use the following steps from ssh as root.

Code:
cd /usr/src
wget http://pecl.php.net/path/to/package.tar.gz
tar -zxf package.tar.gz
cd package
phpize
./configure
make
make install
Open php.ini and add the extension as follows

extension = package.so

Restart apache.
 

Guillaume_Desp

Registered
Jul 30, 2009
3
0
51
thanks David, I'm a beginner , I found a place where manage ssh keys... is it the place to enter the code below ?
 

Guillaume_Desp

Registered
Jul 30, 2009
3
0
51
think I have only c panel access... and my level seems weak to solve this probleme... Maybe will appear a very simple way to do it (as pear.php).

Thanks for your help