• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion
  • Inviting everyone to the UX test of a new security feature in the WP Toolkit
    For WordPress site owners, threats posed by hackers are ever-present. Because of this, we are developing a new security feature for the WP Toolkit. If the topic of WordPress website security is relevant to you, we would be grateful if you could share your experience and help us test the usability of this feature. We invite you to join us for a 1-hour online session via Google Meet. Select a convenient meeting time with our friendly UX staff here.

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