• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • We are looking for U.S.-based freelancer or agency working with SEO or WordPress for a quick 30-min interviews to gather feedback on XOVI, a successful German SEO tool we’re looking to launch in the U.S.
    If you qualify and participate, you’ll receive a $30 Amazon gift card as a thank-you. Please apply here. Thanks for helping shape a better SEO product for agencies!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

Resolved Ioncube Loader v. 10.0.4. - how do I enable it?

kanv1s

New Pleskian
Plesx Onyx v.17.5.3
Debian 8, php 7.1

For some scripts to work, I need Ioncube Loader v 10.0.4.

I see the installed package - plesk-php71-ioncube-loader 10.0.3-debian8.0.17101012 (PHP v 7.1 packages for jessie by Plesk)

But at the moment the 7th version is working

Code:
/php -v
PHP 7.1.13 (cli) (built: Jan  9 2018 11:16:44) ( NTS )
Copyright (c) 1997-2017 The PHP Group
Zend Engine v3.1.0, Copyright (c) 1998-2017 Zend Technologies
    with the ionCube PHP Loader (enabled) + Intrusion Protection from ioncube24.com (unconfigured) v10.0.3, Copyright (c) 2002-2017, by ionCube Ltd.
    with Zend OPcache v7.1.13, Copyright (c) 1999-2017, by Zend Technologies

How can I change it for 10 th?
 
Please use following method:

# wget https://downloads.ioncube.com/loader_downloads/ioncube_loaders_lin_x86-64.tar.gz
# tar -xzf ioncube_loaders_lin_x86-64.tar.gz
# cd ioncube/
# cp /opt/plesk/php/7.1/lib64/php/modules/ioncube_loader_lin_7.1.so /opt/plesk/php/7.1/lib64/php/modules/ioncube_loader_lin_7.1.so_bak
# cp ioncube_loader_lin_7.1.so /opt/plesk/php/7.1/lib64/php/modules/
# plesk bin php_handler --reread

# /opt/plesk/php/7.1/bin/php -v
PHP 7.1.13 (cli) (built: Jan 9 2018 11:08:24) ( NTS )
Copyright (c) 1997-2017 The PHP Group
Zend Engine v3.1.0, Copyright (c) 1998-2017 Zend Technologies
with the ionCube PHP Loader (enabled) + Intrusion Protection from ioncube24.com (unconfigured) v10.1.1, Copyright (c) 2002-2017, by ionCube Ltd.
with Zend OPcache v7.1.13, Copyright (c) 1999-2017, by Zend Technologies
 
And how to enable it on Plesk PHP 7.2.3 ?

I copy the file, but it only says:
# /opt/plesk/php/7.2/bin/php -v
PHP 7.2.3 (cli) (built: Mar 2 2018 14:04:04) ( NTS )
Copyright (c) 1997-2018 The PHP Group
Zend Engine v3.2.0, Copyright (c) 1998-2018 Zend Technologies
with Zend OPcache v7.2.3, Copyright (c) 1999-2018, by Zend Technologies


but in 7.1.15 works ok:
# /opt/plesk/php/7.1/bin/php -v
PHP 7.1.15 (cli) (built: Mar 2 2018 14:03:42) ( NTS )
Copyright (c) 1997-2018 The PHP Group
Zend Engine v3.1.0, Copyright (c) 1998-2018 Zend Technologies
with the ionCube PHP Loader (enabled) + Intrusion Protection from ioncube24.com (unconfigured) v10.2.0, Copyright (c) 2002-2018, by ionCube Ltd.
with Zend OPcache v7.1.15, Copyright (c) 1999-2018, by Zend Technologies

Best regards,
Horacio
 
And how to enable it on Plesk PHP 7.2.3 ?

Use following steps:

# wget https://downloads.ioncube.com/loader_downloads/ioncube_loaders_lin_x86-64.tar.gz
# tar -xvf ioncube_loaders_lin_x86-64.tar.gz
# cp ioncube/ioncube_loader_lin_7.2.so /opt/plesk/php/7.2/lib64/php/modules/
# echo "zend_extension=ioncube_loader_lin_7.2.so" > /opt/plesk/php/7.2/etc/php.d/00-ioncube-loader.ini
# /usr/local/psa/bin/php_settings -u

As result:

# /opt/plesk/php/7.2/bin/php -v
PHP 7.2.3 (cli) (built: Mar 2 2018 14:05:04) ( NTS )
Copyright (c) 1997-2018 The PHP Group
Zend Engine v3.2.0, Copyright (c) 1998-2018 Zend Technologies
with the ionCube PHP Loader (enabled) + Intrusion Protection from ioncube24.com (unconfigured) v10.2.0, Copyright (c) 2002-2018, by ionCube Ltd.
with Zend OPcache v7.2.3, Copyright (c) 1999-2018, by Zend Technologies
 
Back
Top