How To Install ionCube on Ubuntu 20.04

ionCube is PHP extension that is used to load ionCube encoded PHP files. ionCube is used to protect commercial PHP scripts by encoding it, so no one can read the actual PHP code. First, download ioncube loader from https://www.ioncube.com/loaders.php cd /usr/local/src wget https://downloads.ioncube.com/loader_downloads/ioncube_loaders_lin_x86-64.tar.gz tar xvf ioncube_loaders_lin_x86-64.tar.gz cd ioncube/ Find extension directory and copy .so file … Read more

Install ionCube on Ubuntu 18.04

Download ioncube loader from https://www.ioncube.com/loaders.php cd /usr/local/src wget https://downloads.ioncube.com/loader_downloads/ioncube_loaders_lin_x86-64.tar.gz tar xvf ioncube_loaders_lin_x86-64.tar.gz cd ioncube/ Find extension diretcory and copy .so file to php extension diretcory. To find php extension directory run php -i | grep extension_dir For PHP 7.2, run cp /usr/local/src/ioncube/ioncube_loader_lin_7.2.so /usr/lib/php/20170718 Enable ioncube echo “zend_extension=ioncube_loader_lin_7.2.so” > /etc/php/7.2/mods-available/ioncube.ini ln -s /etc/php/7.2/mods-available/ioncube.ini /etc/php/7.2/cli/conf.d/01-ioncube.ini for Apache, … Read more

Install ionCube on Debian 9

ioncube php module

Download latest version of ionCube loader from cd /usr/local/src wget https://downloads.ioncube.com/loader_downloads/ioncube_loaders_lin_x86-64.tar.gz tar xvf ioncube_loaders_lin_x86-64.tar.gz cd ioncube/ Check PHP version with php -v On Debian 9, default will be PHP 7.0, so you need to use file ioncube_loader_lin_7.0.so Find PHP extension_dir, this is where you need to put PHP extensions. root@ip-172-31-44-173:/usr/local/src/ioncube# php -i | grep extension_dir … Read more

ioncube

How To Install ionCube on Ubuntu 20.04 Install ionCube on Ubuntu 18.04 Install ionCube on Debian 8 Install ionCube on Debian 9 Install ionCube Loader on CentOS 7 Install ioncube on CentOS Plesk Server

Install ioncube on Debian 8

To install ioncube Debian 8, first download the ioncube loader from http://www.ioncube.com/loaders.php cd /usr/local/src wget https://downloads.ioncube.com/loader_downloads/ioncube_loaders_lin_x86-64.tar.gz tar xvf ioncube_loaders_lin_x86-64.tar.gz cd ioncube/ This folder have loader for several PHP versions, find the PHP version you have with command php -v By default Debian 8 come with PHP 5.6. The file you need to use for PHP … Read more