• We value your experience with Plesk during 2024
    Plesk strives to perform even better in 2025. To help us improve further, please answer a few questions about your experience with Plesk Obsidian 2024.
    Please take this short survey:

    https://pt-research.typeform.com/to/AmZvSXkx
  • The Horde webmail has been deprecated. Its complete removal is scheduled for April 2025. For details and recommended actions, see the Feature and Deprecation Plan.
  • We’re working on enhancing the Monitoring feature in Plesk, and we could really use your expertise! If you’re open to sharing your experiences with server and website monitoring or providing feedback, we’d love to have a one-hour online meeting with you.

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