-
-
Save mageconsult/f20e162acaba894c079b9fb8d797e57a to your computer and use it in GitHub Desktop.
Install ioncube in puphpet
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Put this file into puphpet/files/exec-once/install-ioncube so it only executed once | |
# it loads ioncube, unzips it, move and add it to php.ini | |
echo "Loading ioncube" | |
wget http://downloads3.ioncube.com/loader_downloads/ioncube_loaders_lin_x86-64.tar.gz | |
echo "Unzipping ioncube" | |
tar xvfz ioncube_loaders_lin_x86-64.tar.gz | |
echo "Move ioncube to usr/local" | |
sudo mv ioncube /usr/local | |
echo "Add ioncube to php.ini" | |
sudo sed -i 1i"zend_extension=/usr/local/ioncube/ioncube_loader_lin_7.0.so" /etc/php/7.0/fpm/php.ini | |
echo "Restarting Apache and FPM" | |
sudo service apache2 restart | |
sudo service php7.0-fpm restart |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment