How To Install IonCube Loader on Ubuntu 20.04

ioncube

What is IonCube?

IonCube is a code encryption tool, created in 2003. It was introduced to protect codes written in PHP language so that an unlicensed user could not view, change or run the file. It secures the file through the encryption/decryption method.

Pre-Requisites

Firstly, we need to have a few things to get started on IonCube loader installation. We will need the following:

  1. Ubuntu 20.4 OS
  2. PHP installed

Note: PHP is not pre-installed in Ubuntu 20.4, but it does have a repository of php7.4 as of now.

PHP Installation

To install PHP, type the following command on your terminal:

 sudo apt update

Now we will install PHP. We first updated our system so that our repositories are up to date.

 sudo apt install php

Now to confirm that PHP is installed successfully, type the following command:

 php -version

php command on Ubuntu 20.04 terminal

Downloading IonCube

To download the ionCube loader, type the following command on the terminal:

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

Your output will look something like this

Ioncube downloading command on Ubuntu 20.04

Extracting tar file

The file that we have downloaded is in tar format. Now to proceed further, we need first to extract the file.

To extract the file, type the following command:

 sudo tar xzf ioncube_loaders_lin_x86-64.tar.gz -C /usr/local

Extracting tar file in Ubuntu 20.04

You can verify that the file has been unzipped by typing the following command:

 ls /usr/local/ioncube

Verification of zipped file in Ubuntu 20.04

You can see that all the versions of the ionCube loader are there. You only need the understanding that you have PHP installed. In my case, it will be php7.4

Furthermore, now that ionCube loader has been installed, you don’t need the zip file anymore so that you can remove it by the following command:

 sudo rm <file path>

 In my case, that was /home/linux/Desktop/ioncube_loaders_lin_x86-64.tar.gz

Removing zipped php file in Ubuntu 20.04

PHP Configuration File

It is important to note that you only have to add an ionCube loader for the specific PHP configuration file. However, you can add an ionCube loader in all the configuration files if you want to.

If you want to be specific, you can check which PHP configuration is working by typing the following command:

 php -i | grep php.ini

By default, PHP configuration files are stored in the following directories; Your output will look something like this

Finding the working PHP configuration file in Ubuntu 20.04

  • /etc/php/7.4/cli/php.ini (For PHP CLI)
  • /etc/php/7.4/apache2/php.ini (For PHP with Apache2)

You can verify this by listing the PHP file as shown below.

PHP configuration files storage in Ubuntu 20.04

Add the ionCube extension to PHP

We have to add ionCube in the PHP configuration file(PHP.ini). All you have to do is add a command at the end of the file.

To add the extension to PHP, type the following command:

 sudo nano /etc/php/7.4/cli/php.ini

Go at the bottom and type the following command:

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

Make sure that the file path is correct. It may differ according to your PHP version. But if you are using default Ubuntu 20.4 repositories, you don’t need to worry about that.

Also, make sure to select the ioncube_loader version that matches your PHP version.

Now Save and Exit the file.

Configuring PHP in Ioncube on Ubuntu 20.04

Confirming IonCube Configuration

To check that IonCube loader is installed successfully, type the following command on the terminal:

 php -v

Confirmation of Ion cube configuration in Ubuntu 20.04

Now your output will look like this

Conclusion

Now you know how to install and configure ionCube loader in PHP on Ubuntu 20.04

If you know any better way or experience any issue while following our tutorial, please feel free to comment below.

0 Shares:
Subscribe
Notify of
guest
Receive notifications when your comment receives a reply. (Optional)
Your username will link to your website. (Optional)

1 Comment
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
Scaz
Scaz
2 years ago

thank you so much i hope you have a great day and health God bless you ! I spent at least a few hours looking for this…. And finally was able to install ioncube

You May Also Like
Touch Command in Linux
Read More

Touch Command in Linux

Creating files is one of the most common things we do. Every now and then, you may also…