How to Install ionCube Loader in CentOS/RHEL 7/6

Channel: Linux
Abstract: As per the above results edit /etc/php.ini file and add the following line at the end of the file. zend_extension = /usr/local/ioncube/ioncube_loader

Install PHP Ioncube Loaders . Ioncube is used as encryption/decryption utility for PHP applications by which we can keep safe our data. It also can restrict PHP application to execute unauthorized. It also assists in speeding up the pages that are served. IonCube loaders are used for decoding encoded files while running on the webserver. read more details on official site. This tutorial will help you to install the PHP Ioncube Loaders module in CentOS/RHEL 7/6/5 system.

  • How to Install Ioncube Loader in WHM/cPanel
Step 1 – Download ionCube Loader

Download latest ioncube loaders on your system from ioncube from ioncube download page or use following command to download ioncube.

wget http://downloads3.ioncube.com/loader_downloads/ioncube_loaders_lin_x86-64.tar.gz

Now, extract the downloaded archive and place files under /usr/local/ioncube directory.

tar xzf ioncube_loaders_lin_x86-64.tar.gz
sudo mv ioncube /usr/local/
Step 2 – Enable ionCube Loader in PHP

Edit the php.ini file and add the following line at the end of the file. To find php.ini file you can use following command.

php -i | grep php.ini

Configuration File (php.ini) Path => /etc
Loaded Configuration File => /etc/php.ini

Then find out the active PHP version on your system:

php -v

As per the above results edit /etc/php.ini file and add the following line at the end of the file.

 zend_extension = /usr/local/ioncube/ioncube_loader_lin_7.3.so

Replace /usr/local/ioncube/ioncube_loader_lin_7.3.so file with your matching PHP version.

Step 3 – Verify Ioncube Loader

Let’s verify the installation and configuration of Ioncube PHP module. Run php -m command on shell.

php -m 

[Zend Modules]
the ionCube PHP Loader (enabled) + Intrusion Protection from ioncube24.com (unconfigured)

Alternatively, you can also put an info.php file on your web server document root with the following content and check the status by access info.php in a web browser.

<?php
   phpinfo();
?>

Ref From: tecadmin

Related articles