• 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.

Issue How to Install ionCube Loader for Plesk PHP 8.0?

mdraselkhan

New Pleskian
Hello,

When I change the PHP version to 8.0, getting ionCube Loader missing error. I'm using WHMCS which is ionCube Loader that must need to be installed. When I run the following command no output is showing, which means the ionCube Loader is not installed.

$ apt-cache search plesk-php80 | grep ioncube

After that, I try by creating "00-ioncube-loader.ini" file manually on the "/opt/plesk/php/8.0/etc/" directory & adding the following contents on that file, but not working.

zend_extension=ioncube_loader_lin_8.0.so

Is there any way to do it?

Thanks!
 
If I'm not mistaken, ionCube Loader does not currently support PHP 8.
 
Ioncube Loader for PHP 8.1 is available!
Ioncube Loaders 12.0.0 have been issued on 2022-08-05 (3 days ago). Along with former PHP versions, up to 7.4, it supports PHP 8.1 encrypted by Ioncube Encoder 12.0.0.
 
Last edited by a moderator:
Install ioncube 8.1 to plesk

wget https://downloads.ioncube.com/loader_downloads/ioncube_loaders_lin_x86-64.tar.gz
tar -xvf ioncube_loaders_lin_x86-64.tar.gz
/bin/cp -a ioncube/ioncube_loader_lin_8.1.so /opt/plesk/php/8.1/lib64/php/modules/ioncube_loader_lin_8.1.so
echo "zend_extension=ioncube_loader_lin_8.1.so" >> /opt/plesk/php/8.1/etc/php.ini
service httpd restart && service plesk-php81-fpm restart
/opt/plesk/php/8.1/bin/php -v | grep -i ioncube
 
@mmhospedagem this line not work for me >
/bin/cp -a ioncube/ioncube_loader_lin_8.1.so /opt/plesk/php/8.1/lib64/php/modules/ioncube_loader_lin_8.1.so

the directory "lib64" are not found > on my Plesk is "lib" only.

/bin/cp -a ioncube/ioncube_loader_lin_8.1.so /opt/plesk/php/8.1/lib/php/modules/ioncube_loader_lin_8.1.so
 
Back
Top