HostGator Web Hosting Help

PHP PECL Packages

PECL acts as a repository for PHP Extensions, providing you with a directory of all known extensions and hosting facilities for downloading and development of PHP extensions.

Viewing Currently Installed PECL Packages

To view the PECL Packages currently installed, you will need SSH access.

If you need to enable SSH access please see our article, SSH Access.

There is currently no way of viewing installed PECL packages for an individual cPanel user. Instead, you can check within your ~/pecl folder where installed packages would be located.

You can view globally installed PECL packages by using the following command. (73 can be replaced with any other available version of PHP ex. 56, 70, 71, 72, 73, and 74)
ea-php73-pecl list -a

Installing New PECL Package

You can download and install PECL packages locally to your account. You'll need SSH access.

If you need to enable SSH access please see our article, SSH Access.

**Instances of “ea-php73” in the following commands can be replaced by other versions of PHP on the server**

Once you're logged in, these are steps for installation:
  1. Create a folder in your home directory to download and compile the packages in.

    mkdir ~/pecl

  2. Create a directory for your php extensions to be located in. Something like ~/php/extensions.

    $ mkdir ~/php ) $ mkdir ~/php/extensions

  3. Change directories to that created pecl directory, and run the following command:

    c$ cd ~/pecl
    $ /opt/cpanel/ea-php73/root/usr/bin/pecl download <packagename>
    ** For multiple PECL packages, repeat steps 4-9 and then step 12 **

  4. That will download the package which you'll then need to untar with:

    tar –zxvf $package.tgz

  5. Change directories to the extracted directory and run the phpize command

    $ cd ~/pecl/

    $ /opt/cpanel/ea-php73/root/usr/bin/phpize

  6. When that's done, run the following command from inside the module folder

    /opt/cpanel/ea-php73/root/usr/bin/phpize && ./configure --with-php-config=/opt/cpanel/ea-php73/root/usr/bin/php-config --prefix=$HOME/pecl/

  7. If that runs without error, then the package should be compatible with our environment. If it completes successfully, run the following command from the individual module directory make

    make

  8. That will create the module file that you’ll need to put in your php.ini. It’ll be located in the modules directory and will be named <packagename>.so
  9. Copy the .so file to your ~/php/extensions directory that you created.

    cp ~/pecl//modules/.so ~/php/extensions/

  10. Copy the existing server-installed extensions from /usr/lib64/php/modules/ to the ~/php/extensions directory:

    cp -rf /usr/lib64/php/modules/* ~/php/extensions/

  11. Edit your PHP config from within the Advanced >> MultiPHP INI Editor. Use the Editor mode to add in the following line, or edit the existing line.
    ** You can find your /home/user folder by using the “pwd” command in shell. **

    extension_dir = "/home<#>//php/extensions"

  12. Add the extension to your php.ini file. It’ll look like:

    extension=.so



Was this resource helpful?

Did this resolve your issue?


Please add any other comments or suggestions about this content:





Recommended Help Content

This article will outline which PHP PEAR Packages are installed and how you can install additional PHP PEAR Packages.
Knowledgebase Article 183,060 views tags: package pear php

How do I view the php information page?
Knowledgebase Article 193,204 views tags: php phpinfo

This article will explain how to add a PHP handler to your .htaccess files. This is useful if you want to customize the version of PHP that runs your PHP files.
Knowledgebase Article 388,359 views tags: htaccess php

Related Help Content

Getting Started Wizard After you have installed phpBB, please use the administrative link provided in SimpleScripts to access the login area. Enter the Admin Username you selected when installing php
Getting Started Article 275,763 views tags: button install link theme topic

This article explains how to install WordPress when Mojo is unable to create the database automatically.
Knowledgebase Article 180,344 views tags: MOJO automatic database install wordpress

Install Themes These steps will help you install and select a WordPress theme for your blog. Inside the WordPress Dashboard, select the Add New Themes link in the Appearance Menu. You can search for
Getting Started Article 809,552 views tags: install link theme themes wordpress

We provide a program which makes it very easy to install third party scripts to your hosting account. If you want your website to have a WordPress blog, you can use MOJO Marketplace to install WordPress.
Getting Started Article 1,071,907 views tags: blog install scripts simple wordpress

This article will explain how to run php and other file types using Cron jobs.
Knowledgebase Article 514,527 views tags: cron file jobs php

This article explains how to enable FastCGI for PHP applications.
Knowledgebase Article 158,569 views tags: fastcgi php

To view your stats, scroll down to the Logs section of the cPanel Here are different programs that can be used to view your stats. We most recommend awstats When you select your stats program, you ma
Getting Started Article 518,815 views tags: awstats domain select stats view

How do I redirect users to another page using PHP?
Knowledgebase Article 918,317 views tags: header location php redirect redirects