Skip to content

Instantly share code, notes, and snippets.

@asabirov
Last active April 2, 2018 07:24
Show Gist options
  • Save asabirov/b807958dbe35d25453e3 to your computer and use it in GitHub Desktop.
Save asabirov/b807958dbe35d25453e3 to your computer and use it in GitHub Desktop.
Easy way to install ioncube on Debian/Ubuntu
wget http://downloads3.ioncube.com/loader_downloads/ioncube_loaders_lin_x86-64.tar.gz
tar zxvf ioncube_loaders_lin_x86-64.tar.gz
PHP_CONFD="/etc/php5/conf.d"
PHP_VERSION=$(php -r "echo PHP_MAJOR_VERSION.'.'.PHP_MINOR_VERSION;")
PHP_EXT_DIR=$(php-config --extension-dir)
cp "ioncube/ioncube_loader_lin_${PHP_VERSION}.so" $PHP_EXT_DIR
echo "zend_extension = ${PHP_EXT_DIR}/ioncube_loader_lin_${PHP_VERSION}.so" > "${PHP_CONFD}/00-ioncube.ini"
rm -rf ./ioncube
rm ioncube_loaders_lin_x86-64.tar.gz
service php5-fpm restart
service httpd restart
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment