Skip to content

Instantly share code, notes, and snippets.

@corny
Created April 3, 2013 14:14
Show Gist options
  • Star 4 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save corny/5301577 to your computer and use it in GitHub Desktop.
Save corny/5301577 to your computer and use it in GitHub Desktop.
Installation of Ioncube Loader 5.3 using PHP 5.3 and Ubuntu 12.04 (64 bit).
#!/bin/bash
cd /root
wget http://downloads2.ioncube.com/loader_downloads/ioncube_loaders_lin_x86-64.tar.gz
tar xzf ioncube_loaders_lin_x86-64.tar.gz
cp ioncube/ioncube_loader_lin_5.3.so /usr/lib/php5/20090626/
file=/usr/lib/php5/20090626/ioncube_loader_lin_5.3.so
chmod 644 $file
echo zend_extension=$file > /etc/php5/conf.d/zend_extensions.ini
chmod 644 $file
chown 0:0 $file
service apache2 reload
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment